diff --git a/src/components/HiddenDidDialog.vue b/src/components/HiddenDidDialog.vue index 10bb0ea..fc9f884 100644 --- a/src/components/HiddenDidDialog.vue +++ b/src/components/HiddenDidDialog.vue @@ -19,9 +19,7 @@ The {{ roleName }} is not visible to you or any of your contacts. - - The {{ roleName }} is not visible to you. - + The {{ roleName }} is not visible to you.

@@ -50,7 +48,11 @@ {{ didInfo(visDid) }} - + @@ -74,8 +76,8 @@ click here to copy this page, paste it into a message, and ask - if they'll tell you more about the {{ roleName }}.click here to copy this page, paste it into a message, and ask if + they'll tell you more about the {{ roleName }}.
@@ -124,7 +126,13 @@ export default class HiddenDidDialog extends Vue { this.canShare = !!navigator.share; } - open(roleName: string, visibleToDids: string[], allContacts: Array, activeDid: string, allMyDids: Array) { + open( + roleName: string, + visibleToDids: string[], + allContacts: Array, + activeDid: string, + allMyDids: Array, + ) { this.roleName = roleName; this.visibleToDids = visibleToDids; this.allContacts = allContacts; @@ -171,4 +179,4 @@ export default class HiddenDidDialog extends Vue { }); } } - \ No newline at end of file + diff --git a/src/views/ClaimView.vue b/src/views/ClaimView.vue index db888d9..e45d777 100644 --- a/src/views/ClaimView.vue +++ b/src/views/ClaimView.vue @@ -270,7 +270,11 @@
{{ didInfo(confirmerId) }} - + @@ -304,7 +308,11 @@
{{ didInfo(confsVisibleTo) }} - + @@ -413,7 +421,11 @@ {{ didInfo(visDid) }} - + diff --git a/src/views/ConfirmGiftView.vue b/src/views/ConfirmGiftView.vue index eb449ac..d22423b 100644 --- a/src/views/ConfirmGiftView.vue +++ b/src/views/ConfirmGiftView.vue @@ -310,9 +310,7 @@ If you'd like an introduction, share this page with them and ask if they'll tell you more about about the participants. {{ issuerInfoObject?.displayName }} - + - +
@@ -70,12 +78,19 @@ target="_blank" class="underline text-blue-500" >Map View - +
- + {{ domainForWebsite(this.url) }} @@ -537,7 +552,11 @@ export default class ProjectViewView extends Vue { imageUrl = ""; isRegistered = false; issuer = ""; - issuerInfoObject: { known: boolean; displayName: string; profileImageUrl?: string } | null = null; + issuerInfoObject: { + known: boolean; + displayName: string; + profileImageUrl?: string; + } | null = null; issuerVisibleToDids: Array = []; latitude = 0; longitude = 0; @@ -623,7 +642,8 @@ export default class ProjectViewView extends Vue { startDateTime.toLocaleTimeString(); } this.agentDid = resp.data.claim?.agent?.identifier; - this.agentDidVisibleToDids = resp.data.claim?.agent?.identifierVisibleToDids || []; + this.agentDidVisibleToDids = + resp.data.claim?.agent?.identifierVisibleToDids || []; this.imageUrl = resp.data.claim?.image; this.issuer = resp.data.issuer; this.issuerInfoObject = serverUtil.didInfoObject( @@ -1171,7 +1191,7 @@ export default class ProjectViewView extends Vue { this.issuerVisibleToDids, this.allContacts, this.activeDid, - this.allMyDids + this.allMyDids, ); } } diff --git a/test-playwright/25-create-project-x10.spec.ts b/test-playwright/25-create-project-x10.spec.ts index c846a1b..0d8094b 100644 --- a/test-playwright/25-create-project-x10.spec.ts +++ b/test-playwright/25-create-project-x10.spec.ts @@ -2,6 +2,8 @@ import { test, expect } from '@playwright/test'; import { importUser, createUniqueStringsArray } from './testUtils'; test('Create 10 new projects', async ({ page }) => { + test.setTimeout(40000); // Set timeout longer since it often fails at 30 seconds + const projectCount = 10; // Standard texts