feat: highlight link to other quest or copy item name in quest details
This commit is contained in:
@ -53,6 +53,7 @@ export default function GuideView() {
|
||||
questUrl={selectedQuest.url}
|
||||
profileId={activeProfileId}
|
||||
onClose={() => setSelectedQuest(null)}
|
||||
onSelectQuest={setSelectedQuest}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
@ -380,11 +381,6 @@ function QuestRow({ quest, completed, onToggle, onSelect, indent }: {
|
||||
>
|
||||
{quest.name}
|
||||
</span>
|
||||
{quest.combat_indicators.map((ci, i) => (
|
||||
<span key={i} style={{ fontSize: "11px", color: "#94a3b8", whiteSpace: "nowrap", flexShrink: 0 }}>
|
||||
{combatIcon(ci.combat_type)} x{ci.count}
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
|
||||
{hasPreviewSection && (
|
||||
|
||||
Reference in New Issue
Block a user