Skip to content

Commit

Permalink
Fix icon locked/open switching
Browse files Browse the repository at this point in the history
  • Loading branch information
felixheidecke committed Oct 1, 2019
1 parent f1be353 commit 8f6baa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/files/src/components/FileLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<li v-for="(link, index) in $_links" :key="'li-' + index">
<oc-grid flex gutter="small">
<div class="uk-width-auto">
<oc-icon v-if="link.password" name="lock" size="medium" />
<oc-icon v-else name="link" size="medium" />
<oc-icon v-show="link.password" name="lock" size="medium" />
<oc-icon v-show="!link.password" name="link" size="medium" />
</div>
<div class="uk-width-expand uk-text-truncate">
<span class="uk-text-bold">{{ link.name }}</span><br>
Expand Down

0 comments on commit 8f6baa4

Please sign in to comment.