aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/instance/feature-boolean.component.html
diff options
context:
space:
mode:
authorCaroline Chuong <caroline.chuong@octo.com>2020-06-11 18:12:52 +0200
committerGitHub <noreply@github.com>2020-06-11 18:12:52 +0200
commit45800f7e63665708665ab0252049e54846ec84c5 (patch)
treec0c489f9f7ad920ec684a71b8737accbe661803f /client/src/app/shared/instance/feature-boolean.component.html
parentcf78883c70dca99fc519374d55620d9403d482be (diff)
downloadPeerTube-45800f7e63665708665ab0252049e54846ec84c5.tar.gz
PeerTube-45800f7e63665708665ab0252049e54846ec84c5.tar.zst
PeerTube-45800f7e63665708665ab0252049e54846ec84c5.zip
add scope tags and aria-labels to instance table (#2866)
also move label to caption element in table
Diffstat (limited to 'client/src/app/shared/instance/feature-boolean.component.html')
-rw-r--r--client/src/app/shared/instance/feature-boolean.component.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/instance/feature-boolean.component.html b/client/src/app/shared/instance/feature-boolean.component.html
index ac208fc13..ccb8a30cc 100644
--- a/client/src/app/shared/instance/feature-boolean.component.html
+++ b/client/src/app/shared/instance/feature-boolean.component.html
@@ -1,3 +1,3 @@
1<span *ngIf="value === true" class="glyphicon glyphicon-ok"></span> 1<span *ngIf="value === true" class="glyphicon glyphicon-ok" i18n-aria-label aria-label="yes"></span>
2<span *ngIf="value === false" class="glyphicon glyphicon-remove"></span> 2<span *ngIf="value === false" class="glyphicon glyphicon-remove" i18n-aria-label aria-label="no"></span>
3 3