Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mymindstorm committed Aug 5, 2018
1 parent ebd1de2 commit e36083f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/popup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ async function init() {
}

if (ui.instance.isEdge()) {
localStorage.storageLocation = 'local'
localStorage.storageLocation = 'local';
}

return;
Expand Down
2 changes: 1 addition & 1 deletion view/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
<div id="export_info" v-if="!encryption.getEncryptionStatus()">{{ i18n.export_info }}</div>
<a id="download_backup" v-on:click="showEdgeBugWarning()" v-if="isEdge()">{{ i18n.download_backup }}</a>
<a download="authenticator.json" v-bind:href="exportFile" id="download_backup" target="_blank" v-else>{{ i18n.download_backup }}</a>
<a download="authenticator.json" v-bind:href="exportEncryptedFile" v-if="encryption.getEncryptionStatus()" id="download_backup" target="_blank">{{ i18n.download_enc_backup }}</a>
<a download="authenticator.json" v-bind:href="exportEncryptedFile" v-if="encryption.getEncryptionStatus() && !isEdge()" id="download_backup" target="_blank">{{ i18n.download_enc_backup }}</a>
<a id="import_backup" href="import.html" target="_blank" v-if="!isEdge()">{{ i18n.import_backup }}</a>
<!-- Workaround for https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/18438862 -->
<a id="import_backup" v-on:click="createWindow('view/import.html')" v-else>{{ i18n.import_backup }}</a>
Expand Down

0 comments on commit e36083f

Please sign in to comment.