diff options
author | Caroline Chuong <caroline.chuong@octo.com> | 2020-06-11 18:12:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-11 18:12:52 +0200 |
commit | 45800f7e63665708665ab0252049e54846ec84c5 (patch) | |
tree | c0c489f9f7ad920ec684a71b8737accbe661803f /client/src/app/shared/instance/feature-boolean.component.html | |
parent | cf78883c70dca99fc519374d55620d9403d482be (diff) | |
download | PeerTube-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.html | 4 |
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 | ||