Skip to content

Commit

Permalink
multisave: fix saveMessages box not being hidden when empty
Browse files Browse the repository at this point in the history
  • Loading branch information
dezhidki committed Feb 20, 2025
1 parent a96e66c commit 9bccf3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion timApp/modules/fields/js/multisave.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const multisaveAll = t.intersection([
[testOnly]="markup.testOnly"
[group]="markup.group">
</tim-sisu-assessment-export>
<div *ngIf="saveMessages" class="saveMessages">
<div *ngIf="saveMessages.length > 0" class="saveMessages">
<div *ngFor="let m of saveMessages">{{m}}</div>
</div>
<div *ngIf="livefeed"> <!-- unsaved fields -->
Expand Down

0 comments on commit 9bccf3c

Please sign in to comment.