Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
Signed-off-by: Jamie Popkin <popkinj@littleearth.ca>
  • Loading branch information
popkinj committed Aug 14, 2023
1 parent 41de584 commit b622007
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,20 @@
<Column header="Actions">
<template #body="{ data }">
<DeleteCredentialExchangeButton
:cred-exch-id="data.credential_exchange_id"
v-if="
config.frontend.showWritableComponents === true ||
config.frontend.showWritableComponents === 'true'
"
:cred-exch-id="data.credential_exchange_id"
/>

<RevokeCredentialButton
:cred-exch-record="data"
:connection-display="findConnectionName(data.connection_id) ?? ''"
v-if="
config.frontend.showWritableComponents === true ||
config.frontend.showWritableComponents === 'true'
"
:cred-exch-record="data"
:connection-display="findConnectionName(data.connection_id) ?? ''"
/>
</template>
</Column>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@
<Column :sortable="false" header="Actions">
<template #body="{ data }">
<Button
title="Delete Schema"
icon="pi pi-trash"
class="p-button-rounded p-button-icon-only p-button-text"
v-if="
config.frontend.showWritableComponents === true ||
config.frontend.showWritableComponents === 'true'
"
title="Delete Schema"
icon="pi pi-trash"
class="p-button-rounded p-button-icon-only p-button-text"
@click="deleteSchema($event, data)"
/>
</template>
Expand Down

0 comments on commit b622007

Please sign in to comment.