Skip to content

Commit

Permalink
Merge pull request umbraco#11157 from umbraco/v8/bugfix/11100-fix-mul…
Browse files Browse the repository at this point in the history
…ti-url-picker-in-block-list

Fix Multi URL Picker in Block List Editor
  • Loading branch information
Zeegaan authored Sep 22, 2021
2 parents 3ad2e74 + b6338ca commit ef7fe70
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
data-app-anchor="{{group.id}}"
data-element="group-{{group.alias}}"
ng-repeat="group in content.tabs track by group.key"
ng-show="(group.parentAlias === activeTabAlias && group.type === 0) || tabs.length === 0">
ng-if="group.type === 0"
ng-show="group.parentAlias === activeTabAlias || tabs.length === 0">

<div class="umb-group-panel__header">
<div id="group-{{group.id}}">{{ group.label }}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
<div class="umb-group-panel"
data-element="group-{{group.alias}}"
ng-repeat="group in vm.model.variants[0].tabs track by group.key"
ng-show="(group.parentAlias === vm.activeTabAlias && group.type === 0) || vm.tabs.length === 0">
ng-if="group.type === 0"
ng-show="group.parentAlias === vm.activeTabAlias || vm.tabs.length === 0">

<div class="umb-group-panel__header">
<div id="group-{{group.id}}">{{ group.label }}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
class="umb-group-panel"
data-element="group-{{group.alias}}"
ng-repeat="group in content.tabs | filter: { hide : '!' + true } track by group.id"
ng-show="(group.parentAlias === vm.activeTabAlias && group.type === 0) || vm.tabs.length === 0">
ng-if="group.type === 0"
ng-show="group.parentAlias === vm.activeTabAlias || vm.tabs.length === 0">

<div class="umb-group-panel__header">
<div>{{ group.label }}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
class="umb-group-panel"
data-element="group-{{group.alias}}"
ng-repeat="group in content.tabs"
ng-show="(group.parentAlias === vm.activeTabAlias && group.type === 0) || vm.tabs.length === 0">
ng-if="group.type === 0"
ng-show="group.parentAlias === vm.activeTabAlias || vm.tabs.length === 0">

<div class="umb-group-panel__header">
<div>{{ group.label }}</div>
Expand Down

0 comments on commit ef7fe70

Please sign in to comment.