We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14680b0 commit 75260b0Copy full SHA for 75260b0
1 file changed
src/app/shared/form/vocabulary-treeview/vocabulary-treeview.component.html
@@ -24,9 +24,11 @@
24
</div>
25
<div class="treeview-container">
26
<ds-themed-loading *ngIf="loading | async" [showMessage]="false"></ds-themed-loading>
27
- <h2 *ngIf="!(loading | async) && dataSource.data.length === 0" class="h4 text-center text-muted mt-4" >
28
- <span>{{'vocabulary-treeview.search.no-result' | translate}}</span>
29
- </h2>
+ <div aria-live="polite">
+ <h2 *ngIf="!(loading | async) && dataSource.data.length === 0" class="h4 text-center text-muted mt-4" >
+ <span>{{'vocabulary-treeview.search.no-result' | translate}}</span>
30
+ </h2>
31
+ </div>
32
<cdk-tree [dataSource]="dataSource" [treeControl]="treeControl">
33
<!-- Leaf node -->
34
<cdk-tree-node *cdkTreeNodeDef="let node" cdkTreeNodePadding class="d-flex">
0 commit comments