forked from trent_larson/crowd-funder-for-time-pwa
fix build and auto-test issues
This commit is contained in:
@@ -352,12 +352,8 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="loadingProfile">
|
<div v-else-if="loadingProfile">Loading...</div>
|
||||||
Loading...
|
<div v-else>Saving...</div>
|
||||||
</div>
|
|
||||||
<div v-else="savingProfile">
|
|
||||||
Saving...
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -6,16 +6,18 @@
|
|||||||
<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">
|
||||||
<!-- Breadcrumb -->
|
<!-- Breadcrumb -->
|
||||||
<div id="ViewBreadcrumb">
|
<div id="ViewBreadcrumb">
|
||||||
<h1 class="text-lg text-center font-light relative px-7">
|
<div>
|
||||||
<!-- Back -->
|
<h1 class="text-center text-lg font-light relative px-7">
|
||||||
<button
|
<!-- Back -->
|
||||||
@click="$router.go(-1)"
|
<button
|
||||||
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
@click="$router.go(-1)"
|
||||||
>
|
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
||||||
<fa icon="chevron-left" class="fa-fw"></fa>
|
>
|
||||||
</button>
|
<fa icon="chevron-left" class="fa-fw"></fa>
|
||||||
Project Idea
|
</button>
|
||||||
<h2 class="text-xl font-semibold">
|
Project Idea
|
||||||
|
</h1>
|
||||||
|
<h2 class="text-center text-xl font-semibold">
|
||||||
{{ name }}
|
{{ name }}
|
||||||
<button
|
<button
|
||||||
v-if="activeDid === issuer || activeDid === agentDid"
|
v-if="activeDid === issuer || activeDid === agentDid"
|
||||||
@@ -26,7 +28,7 @@
|
|||||||
<fa icon="pen" class="text-sm text-blue-500 ml-2 mb-1" />
|
<fa icon="pen" class="text-sm text-blue-500 ml-2 mb-1" />
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
</h1>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Project Details -->
|
<!-- Project Details -->
|
||||||
|
|||||||
@@ -23,6 +23,6 @@ test('Check usage limits', async ({ page }) => {
|
|||||||
await page.getByRole('button', { name: 'Set Your Name' }).click();
|
await page.getByRole('button', { name: 'Set Your Name' }).click();
|
||||||
const name = 'User ' + did.slice(11, 14);
|
const name = 'User ' + did.slice(11, 14);
|
||||||
await page.getByPlaceholder('Name').fill(name);
|
await page.getByPlaceholder('Name').fill(name);
|
||||||
await page.getByRole('button', { name: 'Save' }).click();
|
await page.getByRole('button', { name: 'Save', exact: true }).click();
|
||||||
|
|
||||||
});
|
});
|
||||||
Reference in New Issue
Block a user