Skip to content

Commit

Permalink
fix(config-ui): use fullname to replace name in data scope search (#6605
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mintsweet authored Dec 8, 2023
1 parent ace5afe commit 8c9b852
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const DataScopeSelect = ({
<MultiSelector
loading={!ready}
items={searchItems}
getName={(it) => it.name}
getName={(it) => it.fullName ?? it.name}
getKey={(it) => getPluginScopeId(plugin, it)}
noResult="No Data Scopes Available."
onQueryChange={(query) => setQuery(query)}
Expand Down

0 comments on commit 8c9b852

Please sign in to comment.