-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #192 from deetz99/platform-review-step
Platform review step
- Loading branch information
Showing
6 changed files
with
492 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
strr-pm-web/app/components/form/platform/Review/EditCardHeader.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!-- using this to cleanup the Review component template, | ||
should add an 'actions' prop to the ConnectPageSection component to avoid this --> | ||
<script setup lang="ts"> | ||
defineProps<{ | ||
title: string | ||
icon: string | ||
}>() | ||
defineEmits<{ | ||
edit: [void] | ||
}>() | ||
</script> | ||
<template> | ||
<div class="flex items-center px-4"> | ||
<div class="inline-flex grow items-center gap-2"> | ||
<UIcon | ||
:name="icon" | ||
class="size-6 shrink-0 text-bcGovColor-activeBlue" | ||
/> | ||
<h2> | ||
{{ title }} | ||
</h2> | ||
</div> | ||
<UButton | ||
:label="$t('word.Edit')" | ||
icon="i-mdi-edit" | ||
variant="link" | ||
:padded="false" | ||
@click="$emit('edit')" | ||
/> | ||
</div> | ||
</template> |
Oops, something went wrong.