mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix(ui): fix invalid nesting of button in button
This commit is contained in:
parent
2347a00a70
commit
d6362ce0bd
@ -136,17 +136,17 @@ const InvokeTabs = () => {
|
||||
() =>
|
||||
enabledTabs.map((tab) => (
|
||||
<InvTooltip key={tab.id} label={t(tab.translationKey)} placement="end">
|
||||
<InvTab p={0}>
|
||||
<InvIconButton
|
||||
onClick={handleClickTab}
|
||||
icon={tab.icon}
|
||||
size="md"
|
||||
fontSize="24px"
|
||||
variant="appTab"
|
||||
data-selected={activeTabName === tab.id}
|
||||
aria-label={t(tab.translationKey)}
|
||||
/>
|
||||
</InvTab>
|
||||
<InvTab
|
||||
as={InvIconButton}
|
||||
p={0}
|
||||
onClick={handleClickTab}
|
||||
icon={tab.icon}
|
||||
size="md"
|
||||
fontSize="24px"
|
||||
variant="appTab"
|
||||
data-selected={activeTabName === tab.id}
|
||||
aria-label={t(tab.translationKey)}
|
||||
/>
|
||||
</InvTooltip>
|
||||
)),
|
||||
[enabledTabs, t, handleClickTab, activeTabName]
|
||||
|
Loading…
x
Reference in New Issue
Block a user