|
@ -450,9 +450,15 @@ |
|
|
{{ DEFAULT_PUSH_SERVER }} |
|
|
{{ DEFAULT_PUSH_SERVER }} |
|
|
</span> |
|
|
</span> |
|
|
|
|
|
|
|
|
|
|
|
<div class="mt-2"> |
|
|
|
|
|
<span class="text-slate-500 text-sm font-bold">Image Server URL</span> |
|
|
|
|
|
|
|
|
|
|
|
<span class="text-sm">{{ DEFAULT_IMAGE_API_SERVER }}</span> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
<label |
|
|
<label |
|
|
for="toggleShowShortcutBvc" |
|
|
for="toggleShowShortcutBvc" |
|
|
class="flex items-center justify-between cursor-pointer my-4" |
|
|
class="flex items-center justify-between cursor-pointer mt-4" |
|
|
@click="toggleShowShortcutBvc" |
|
|
@click="toggleShowShortcutBvc" |
|
|
> |
|
|
> |
|
|
<!-- label --> |
|
|
<!-- label --> |
|
@ -546,12 +552,15 @@ interface IAccount { |
|
|
|
|
|
|
|
|
const inputFileNameRef = ref<Blob>(); |
|
|
const inputFileNameRef = ref<Blob>(); |
|
|
|
|
|
|
|
|
@Component({ components: { QuickNav, TopMessage } }) |
|
|
@Component({ |
|
|
|
|
|
components: { QuickNav, TopMessage }, |
|
|
|
|
|
}) |
|
|
export default class AccountViewView extends Vue { |
|
|
export default class AccountViewView extends Vue { |
|
|
$notify!: (notification: NotificationIface, timeout?: number) => void; |
|
|
$notify!: (notification: NotificationIface, timeout?: number) => void; |
|
|
|
|
|
|
|
|
AppConstants = AppString; |
|
|
AppConstants = AppString; |
|
|
DEFAULT_PUSH_SERVER = DEFAULT_PUSH_SERVER; |
|
|
DEFAULT_PUSH_SERVER = DEFAULT_PUSH_SERVER; |
|
|
|
|
|
DEFAULT_IMAGE_API_SERVER = DEFAULT_IMAGE_API_SERVER; |
|
|
|
|
|
|
|
|
activeDid = ""; |
|
|
activeDid = ""; |
|
|
apiServer = ""; |
|
|
apiServer = ""; |
|
|