Skip to content

Commit

Permalink
Missed these guys
Browse files Browse the repository at this point in the history
Signed-off-by: Jamie Popkin <[email protected]>
  • Loading branch information
popkinj committed Aug 14, 2023
1 parent af894d6 commit e4c619f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,19 @@
<template #body="{ data }">
<DeleteCredentialExchangeButton
:cred-exch-id="data.credential_exchange_id"
v-if="

Check warning on line 49 in services/tenant-ui/frontend/src/components/issuance/IssuedCredentials.vue

View workflow job for this annotation

GitHub Actions / Build Tenant UI

Attribute "v-if" should go before ":cred-exch-id"
config.frontend.showWritableComponents === true ||
config.frontend.showWritableComponents === 'true'
"
/>

<RevokeCredentialButton
:cred-exch-record="data"
:connection-display="findConnectionName(data.connection_id) ?? ''"
v-if="

Check warning on line 58 in services/tenant-ui/frontend/src/components/issuance/IssuedCredentials.vue

View workflow job for this annotation

GitHub Actions / Build Tenant UI

Attribute "v-if" should go before ":connection-display"
config.frontend.showWritableComponents === true ||
config.frontend.showWritableComponents === 'true'
"
/>
</template>
</Column>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@
title="Delete Schema"
icon="pi pi-trash"
class="p-button-rounded p-button-icon-only p-button-text"
v-if="

Check warning on line 59 in services/tenant-ui/frontend/src/components/issuance/Schemas.vue

View workflow job for this annotation

GitHub Actions / Build Tenant UI

Attribute "v-if" should go before "class"
config.frontend.showWritableComponents === true ||
config.frontend.showWritableComponents === 'true'
"
@click="deleteSchema($event, data)"
/>
</template>
Expand Down Expand Up @@ -188,6 +192,8 @@ import { formatDateLong } from '@/helpers';
import { useConfigStore } from '@/store/configStore';
const { config } = storeToRefs(useConfigStore());
console.log('config', config);
const confirm = useConfirm();
const toast = useToast();
Expand Down

0 comments on commit e4c619f

Please sign in to comment.