|
@ -12,6 +12,7 @@ Raymer * @version 1.0.0 */ |
|
|
<section id="Content" class="p-6 pb-24 max-w-3xl mx-auto"> |
|
|
<section id="Content" class="p-6 pb-24 max-w-3xl mx-auto"> |
|
|
<h1 id="ViewHeading" class="text-4xl text-center font-light mb-8"> |
|
|
<h1 id="ViewHeading" class="text-4xl text-center font-light mb-8"> |
|
|
{{ AppString.APP_NAME }} |
|
|
{{ AppString.APP_NAME }} |
|
|
|
|
|
<span class="text-xs text-gray-500">{{ package.version }}</span> |
|
|
</h1> |
|
|
</h1> |
|
|
|
|
|
|
|
|
<OnboardingDialog ref="onboardingDialog" /> |
|
|
<OnboardingDialog ref="onboardingDialog" /> |
|
@ -353,6 +354,7 @@ import * as serverUtil from "../libs/endorserServer"; |
|
|
import { logger } from "../utils/logger"; |
|
|
import { logger } from "../utils/logger"; |
|
|
import { GiveRecordWithContactInfo } from "../interfaces/give"; |
|
|
import { GiveRecordWithContactInfo } from "../interfaces/give"; |
|
|
import { PlatformServiceFactory } from "@/services/PlatformServiceFactory"; |
|
|
import { PlatformServiceFactory } from "@/services/PlatformServiceFactory"; |
|
|
|
|
|
import * as Package from "../../package.json"; |
|
|
|
|
|
|
|
|
interface Claim { |
|
|
interface Claim { |
|
|
claim?: Claim; // For nested claims in Verifiable Credentials |
|
|
claim?: Claim; // For nested claims in Verifiable Credentials |
|
@ -443,6 +445,7 @@ export default class HomeView extends Vue { |
|
|
|
|
|
|
|
|
AppString = AppString; |
|
|
AppString = AppString; |
|
|
PASSKEYS_ENABLED = PASSKEYS_ENABLED; |
|
|
PASSKEYS_ENABLED = PASSKEYS_ENABLED; |
|
|
|
|
|
package = Package; |
|
|
|
|
|
|
|
|
activeDid = ""; |
|
|
activeDid = ""; |
|
|
allContacts: Array<Contact> = []; |
|
|
allContacts: Array<Contact> = []; |
|
|