Skip to content

Commit

Permalink
account ui top right search support legacy search
Browse files Browse the repository at this point in the history
  • Loading branch information
jomarmontuya committed Mar 25, 2024
1 parent 895d013 commit 72df9c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/accounts/ui/select/AccountsComboBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const StyledPopper = styled(Popper)({

const filterOptions = createFilterOptions({
matchFrom: 'any',
stringify: (option) => option.name + option.value,
stringify: (option) => option.name + option.value + option.id,
});

const Index = ({
Expand All @@ -161,6 +161,7 @@ const Index = ({
return {
name: e.name,
value: e.ZUID,
id: e.ID,
};
});

Expand Down
1 change: 1 addition & 0 deletions src/components/console/AccountsAppbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export const AccountsAppbar = ({ colorInvert = false }) => {
if (isDocsPage) {
return <></>;
}

return (
<Box
width={1}
Expand Down

0 comments on commit 72df9c6

Please sign in to comment.