|
17 | 17 | <a-button-link |
18 | 18 | download="authenticator.txt" |
19 | 19 | :href="exportOneLineOtpAuthFile" |
20 | | - v-if="!unsupportedAccounts & isDataLinkSupported" |
| 20 | + v-if="!unsupportedAccounts && isDataLinkSupported" |
21 | 21 | >{{ i18n.download_backup }}</a-button-link |
22 | 22 | > |
23 | 23 | <button |
24 | 24 | v-on:click="downloadBackUpOneLineOtpAuthFile()" |
25 | | - v-if="!unsupportedAccounts & !isDataLinkSupported" |
| 25 | + v-if="!unsupportedAccounts && !isDataLinkSupported" |
26 | 26 | class="button" |
27 | 27 | > |
28 | 28 | {{ i18n.download_backup }} |
29 | 29 | </button> |
30 | 30 | <a-button-link |
31 | 31 | download="authenticator.json" |
32 | 32 | :href="exportFile" |
33 | | - v-if="unsupportedAccounts & isDataLinkSupported" |
| 33 | + v-if="unsupportedAccounts && isDataLinkSupported" |
34 | 34 | >{{ i18n.download_backup }}</a-button-link |
35 | 35 | > |
36 | 36 | <button |
37 | 37 | v-on:click="downloadBackUpExportFile()" |
38 | | - v-if="unsupportedAccounts & !isDataLinkSupported" |
| 38 | + v-if="unsupportedAccounts && !isDataLinkSupported" |
39 | 39 | class="button" |
40 | 40 | > |
41 | 41 | {{ i18n.download_backup }} |
42 | 42 | </button> |
43 | 43 | <a-button-link |
44 | 44 | download="authenticator.json" |
45 | 45 | :href="exportEncryptedFile" |
46 | | - v-if="encryption.getEncryptionStatus() & isDataLinkSupported" |
| 46 | + v-if="encryption.getEncryptionStatus() && isDataLinkSupported" |
47 | 47 | >{{ i18n.download_enc_backup }}</a-button-link |
48 | 48 | > |
49 | 49 | <button |
50 | 50 | v-on:click="downloadBackUpExportEncryptedFile()" |
51 | | - v-if="encryption.getEncryptionStatus() & !isDataLinkSupported" |
| 51 | + v-if="encryption.getEncryptionStatus() && !isDataLinkSupported" |
52 | 52 | class="button" |
53 | 53 | > |
54 | 54 | {{ i18n.download_enc_backup }} |
|
57 | 57 | <a-button-link href="import.html">{{ i18n.import_backup }}</a-button-link> |
58 | 58 | <br /> |
59 | 59 | <!-- 3rd Party Backup Services --> |
60 | | - <div v-show="!backupDisabled & isBackupServiceSupported"> |
| 60 | + <div v-show="!backupDisabled && isBackupServiceSupported"> |
61 | 61 | <div class="text"> |
62 | 62 | {{ i18n.storage_sync_info }} |
63 | 63 | </div> |
|
0 commit comments