Skip to content

Commit 479284a

Browse files
authored
feat(extension): plugin marketplace search supports matching display names. (#4332)
1 parent 9322218 commit 479284a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

dashboard/src/views/ExtensionPage.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ const marketCustomFilter = (value, query, item) => {
154154
if (value != null) candidates.add(String(value));
155155
if (item?.name) candidates.add(String(item.name));
156156
if (item?.trimmedName) candidates.add(String(item.trimmedName));
157+
if (item?.display_name) candidates.add(String(item.display_name));
157158
if (item?.desc) candidates.add(String(item.desc));
158159
if (item?.author) candidates.add(String(item.author));
159160

0 commit comments

Comments
 (0)