Skip to content

Commit

Permalink
Merge pull request #4534 from apostrophecms/PRO-6051-alternative-fix
Browse files Browse the repository at this point in the history
Add alternative fix for "ungrouped" tab
  • Loading branch information
BoDonkey committed May 10, 2024
2 parents 9228654 + c5d7a21 commit b80996e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ except as part of the admin UI bundle which depends on it. For use with external
Thanks to Michelin for contributing this feature.

### Fixes
* Do not show widget editor tabs when there is only one tab.
* Do not show widget editor tabs when the developer hasn't created any groups.

### Changes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<template #breadcrumbs>
<AposModalBreadcrumbs v-if="breadcrumbs && breadcrumbs.length" :items="breadcrumbs" />
<AposWidgetModalTabs
v-if="tabs.length > 1"
v-if="tabs.length && tabs[0].name !== 'ungrouped'"
:key="tabKey"
:current="currentTab"
:tabs="tabs"
Expand Down

0 comments on commit b80996e

Please sign in to comment.