mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 00:10:13 +01:00
UI: Add missing title attributes
The buttons of the normal view should have the same title attribute, than
the mini screen buttons.
I missed this in 0587158b6b.
This commit is contained in:
parent
fad5150ada
commit
5916ff3c1b
1 changed files with 6 additions and 5 deletions
|
|
@ -16,20 +16,21 @@ template(name="boardHeaderBar")
|
||||||
span
|
span
|
||||||
= currentBoard.stars
|
= currentBoard.stars
|
||||||
|
|
||||||
a.board-header-btn(class="{{#if currentUser.isBoardAdmin}}js-change-visibility{{else}}is-disabled{{/if}}")
|
a.board-header-btn(
|
||||||
|
class="{{#if currentUser.isBoardAdmin}}js-change-visibility{{else}}is-disabled{{/if}}"
|
||||||
|
title="{{_ currentBoard.permission}}")
|
||||||
i.fa(class="{{#if currentBoard.isPublic}}fa-globe{{else}}fa-lock{{/if}}")
|
i.fa(class="{{#if currentBoard.isPublic}}fa-globe{{else}}fa-lock{{/if}}")
|
||||||
span {{_ currentBoard.permission}}
|
span {{_ currentBoard.permission}}
|
||||||
|
|
||||||
a.board-header-btn.js-watch-board
|
a.board-header-btn.js-watch-board(
|
||||||
|
title="{{_ watchLevel }}")
|
||||||
if $eq watchLevel "watching"
|
if $eq watchLevel "watching"
|
||||||
i.fa.fa-eye
|
i.fa.fa-eye
|
||||||
span {{_ 'watching'}}
|
|
||||||
if $eq watchLevel "tracking"
|
if $eq watchLevel "tracking"
|
||||||
i.fa.fa-bell
|
i.fa.fa-bell
|
||||||
span {{_ 'tracking'}}
|
|
||||||
if $eq watchLevel "muted"
|
if $eq watchLevel "muted"
|
||||||
i.fa.fa-bell-slash
|
i.fa.fa-bell-slash
|
||||||
span {{_ 'muted'}}
|
span {{_ watchLevel}}
|
||||||
|
|
||||||
else
|
else
|
||||||
a.board-header-btn.js-log-in(
|
a.board-header-btn.js-log-in(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue