We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71f09b8 commit caa0b03Copy full SHA for caa0b03
1 file changed
CmdPalWebSearchShortcut/WebSearchShortcut/Pages/FallbackSearchWebItem.cs
@@ -16,15 +16,15 @@ public FallbackSearchWebItem(WebSearchShortcutDataEntry shortcut)
16
id: $"{shortcut.Id}.fallback",
17
displayTitle: shortcut.Name,
18
command: new SearchWebCommand(shortcut, string.Empty) {
19
- Id = $"{shortcut.Id}.fallback"
+ Id = $"{shortcut.Id}.fallback",
20
+ Name = string.Empty,
21
+ Icon = Icons.Search
22
}
23
)
24
{
25
_shortcut = shortcut;
26
27
_searchWebCommand = (SearchWebCommand) Command!;
- _searchWebCommand.Name = string.Empty;
- _searchWebCommand.Icon = Icons.Search;
28
29
Title = string.Empty;
30
Subtitle = string.Empty;
0 commit comments