Skip to content

Commit

Permalink
Merge pull request #508 from Authenticator-Extension/ui-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mymindstorm authored Jul 16, 2020
2 parents c124e9f + fe31aff commit 49ed4a1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
7 changes: 5 additions & 2 deletions src/components/Popup/DrivePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@
{{ i18n.account }} - {{ email }}
</div>
</div>
<div v-show="encryption.getEncryptionStatus() && backupToken">
<div
class="control-group"
v-show="encryption.getEncryptionStatus() && backupToken"
>
<label class="combo-label">{{ i18n.encrypted }}</label>
<select v-model="isEncrypted">
<select style="margin: 20px 10px;" v-model="isEncrypted">
<option value="true">{{ i18n.yes }}</option>
<option value="false">{{ i18n.no }}</option>
</select>
Expand Down
7 changes: 5 additions & 2 deletions src/components/Popup/DropboxPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@
{{ i18n.account }} - {{ email }}
</div>
</div>
<div v-show="encryption.getEncryptionStatus() && backupToken">
<div
class="control-group"
v-show="encryption.getEncryptionStatus() && backupToken"
>
<label class="combo-label">{{ i18n.encrypted }}</label>
<select v-model="isEncrypted">
<select style="margin: 20px 10px;" v-model="isEncrypted">
<option value="true">{{ i18n.yes }}</option>
<option value="false">{{ i18n.no }}</option>
</select>
Expand Down
7 changes: 5 additions & 2 deletions src/components/Popup/OneDrivePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@
{{ i18n.account }} - {{ email }}
</div>
</div>
<div v-show="encryption.getEncryptionStatus() && backupToken">
<div
class="control-group"
v-show="encryption.getEncryptionStatus() && backupToken"
>
<label class="combo-label">{{ i18n.encrypted }}</label>
<select v-model="isEncrypted">
<select style="margin: 20px 10px;" v-model="isEncrypted">
<option value="true">{{ i18n.yes }}</option>
<option value="false">{{ i18n.no }}</option>
</select>
Expand Down

0 comments on commit 49ed4a1

Please sign in to comment.