Skip to content

Commit

Permalink
Missing labels
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien-schiehle committed Nov 3, 2021
1 parent 21ba697 commit 58b3ee9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/journal.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

{{#if this.displayVisibilityButtons }}
{{#if this.visibleByPlayers }}
<button type="button" class="world-anvil-control" data-action="hide-folder" data-category-id="{{ this.id }}" title="{{ localize 'WA.Visibility.Hide.Btn' }}">
<button type="button" class="world-anvil-control" data-action="hide-folder" data-category-id="{{ this.id }}" title="{{ localize 'WA.ButtonVisibilityHide' }}">
<i class="far fa-eye"></i>
</button>
{{else}}
<button type="button" class="world-anvil-control" data-action="display-folder" data-category-id="{{ c.id }}" title="{{ localize 'WA.Visibility.Display.Btn' }}">
<button type="button" class="world-anvil-control" data-action="display-folder" data-category-id="{{ c.id }}" title="{{ localize 'WA.ButtonVisibilityDisplay' }}">
<i class="far fa-eye-slash"></i>
</button>
{{/if}}
Expand Down Expand Up @@ -59,11 +59,11 @@
{{#if this.entry }}

{{#if this.visibleByPlayers }}
<button type="button" class="world-anvil-control" data-action="hide-entry" data-entry-id="{{ this.entry.id }}" title="{{ localize 'WA.Visibility.Hide.Btn' }}">
<button type="button" class="world-anvil-control" data-action="hide-entry" data-entry-id="{{ this.entry.id }}" title="{{ localize 'WA.ButtonVisibilityHide' }}">
<i class="far fa-eye"></i>
</button>
{{else}}
<button type="button" class="world-anvil-control" data-action="display-entry" data-entry-id="{{ this.entry.id }}" title="{{ localize 'WA.Visibility.Display.Btn' }}">
<button type="button" class="world-anvil-control" data-action="display-entry" data-entry-id="{{ this.entry.id }}" title="{{ localize 'WA.ButtonVisibilityDisplay' }}">
<i class="far fa-eye-slash"></i>
</button>
{{/if}}
Expand Down

0 comments on commit 58b3ee9

Please sign in to comment.