Do not display back button at the root level of the command menu (#10073)
Do not display back button at the root level of the command menu
This commit is contained in:
@ -126,13 +126,15 @@ export const CommandMenuTopBar = () => {
|
||||
<StyledContentContainer>
|
||||
{isCommandMenuV2Enabled && (
|
||||
<>
|
||||
<CommandMenuContextChip
|
||||
Icons={[<IconChevronLeft size={theme.icon.size.sm} />]}
|
||||
onClick={() => {
|
||||
goBackFromCommandMenu();
|
||||
}}
|
||||
testId="command-menu-go-back-button"
|
||||
/>
|
||||
{commandMenuPage !== CommandMenuPages.Root && (
|
||||
<CommandMenuContextChip
|
||||
Icons={[<IconChevronLeft size={theme.icon.size.sm} />]}
|
||||
onClick={() => {
|
||||
goBackFromCommandMenu();
|
||||
}}
|
||||
testId="command-menu-go-back-button"
|
||||
/>
|
||||
)}
|
||||
{isDefined(contextStoreCurrentObjectMetadataId) &&
|
||||
commandMenuPage !== CommandMenuPages.SearchRecords ? (
|
||||
<CommandMenuContextChipGroupsWithRecordSelection
|
||||
|
||||
@ -197,17 +197,6 @@ export const NoResultsSearchFallback: Story = {
|
||||
},
|
||||
};
|
||||
|
||||
export const GoBack: Story = {
|
||||
play: async () => {
|
||||
const canvas = within(document.body);
|
||||
const goBackButton = await canvas.findByTestId(
|
||||
'command-menu-go-back-button',
|
||||
);
|
||||
await userEvent.click(goBackButton);
|
||||
await expect(goBackButton).not.toBeVisible();
|
||||
},
|
||||
};
|
||||
|
||||
export const ClickOnSearchRecordsAndGoBack: Story = {
|
||||
play: async () => {
|
||||
const canvas = within(document.body);
|
||||
|
||||
Reference in New Issue
Block a user