Browse Source

fix: toggling password visibility of current view link

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/688/head
Pranav C 3 years ago
parent
commit
c3e5c4c9b6
  1. 2
      packages/nc-gui/components/project/spreadsheet/components/sharedViewsList.vue

2
packages/nc-gui/components/project/spreadsheet/components/sharedViewsList.vue

@ -34,7 +34,7 @@
</td>
<td class="caption">
<template v-if="currentView.password">
<span>{{ currentView.showPassword ? link.password : '***************************' }}</span>
<span>{{ currentView.showPassword ? currentView.password : '***************************' }}</span>
<v-icon small @click="$set(currentView, 'showPassword' , !currentView.showPassword)">
{{ currentView.showPassword ? 'visibility_off' : 'visibility' }}
</v-icon>

Loading…
Cancel
Save