Skip to content

Commit

Permalink
[DSC-1362] Fix issue with add button
Browse files Browse the repository at this point in the history
  • Loading branch information
atarix83 committed Nov 24, 2023
1 parent 274706e commit 99dc698
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<button class="btn btn-secondary ml-3 flex-shrink-0" type="button" (click)="reset()">
<span><i class="fas fa-eraser"></i> {{'vocabulary-treeview.search.form.reset' | translate}}</span>
</button>
<button *ngIf="showAdd " class="btn btn-secondary ml-3 flex-shrink-0" type="button" (click)="add()">
<button *ngIf="showAdd && !this.vocabularyOptions.closed" class="btn btn-secondary ml-3 flex-shrink-0" type="button" (click)="add()">
<span><i class="fas fa-plus"></i> {{'vocabulary-treeview.search.form.add' | translate}}</span>
</button>
</div>
Expand Down

0 comments on commit 99dc698

Please sign in to comment.