Skip to content
This repository has been archived by the owner on May 5, 2022. It is now read-only.

Commit

Permalink
Fixed not be able to moved dictionary parent to child dictionary item
Browse files Browse the repository at this point in the history
  • Loading branch information
Lantzify committed Jun 4, 2021
1 parent 6e9784c commit 349593c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h5 style="cursor:pointer;">
</div>
</button>
</li>
<li class="umb-animated umb-tree-item" ng-repeat="dictionary in vm.dictionaries" ng-click="vm.toggleSelect(dictionary.key)" ng-if="dictionary.id != vm.dictionary.id && dictionary.key != vm.dictionary.parentId" style="cursor:pointer;">
<li class="umb-animated umb-tree-item" ng-repeat="dictionary in vm.dictionaries" ng-click="vm.toggleSelect(dictionary.key)" ng-if="dictionary.id != vm.dictionary.id && dictionary.parentId != vm.dictionary.key" style="cursor:pointer;">
<div class="umb-tree-item__inner">
<umb-icon ng-if="vm.selectedKey != dictionary.key" icon="icon-book-alt" class="umb-tree-icon"></umb-icon>
<umb-icon ng-if="vm.selectedKey == dictionary.key" icon="icon-check" class="umb-tree-icon"></umb-icon>
Expand Down

0 comments on commit 349593c

Please sign in to comment.