Skip to content

Commit

Permalink
fix: italicize suggested file entries
Browse files Browse the repository at this point in the history
  • Loading branch information
joyceerhl committed Nov 21, 2024
1 parent d372ddd commit 2679fa2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ class CollapsibleListRenderer implements IListRenderer<IChatCollapsibleListItem,
name: basenameOrAuthority(uri),
description: data.description ?? localize('chat.openEditor', 'Open Editor'),
range: 'range' in reference ? reference.range : undefined,
}, { icon, title: data.options?.status?.description ?? data.title, strikethrough: data.excluded });
}, { icon, title: data.options?.status?.description ?? data.title, italic: data.state === WorkingSetEntryState.Suggested, strikethrough: data.excluded });
} else {
templateData.label.setFile(uri, {
fileKind: FileKind.FILE,
Expand Down

0 comments on commit 2679fa2

Please sign in to comment.