Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: misc cosmetic fixes #882

Merged
merged 2 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/allowances/ApproveAllowanceSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<DashboardCard v-if="accountId" collapsible-key="allowances">
<template v-slot:title>
<span class="h-is-secondary-title">accountAllowances</span>
<span class="h-is-secondary-title">Account Allowances</span>
</template>
<template v-slot:control>
<button v-if="isWalletConnected && isHederaWallet" id="approve-button" class="button is-white is-small"
Expand Down
4 changes: 2 additions & 2 deletions src/components/contract/ContractResult.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<template>

<div v-if="contractResult">
<template v-if="contractResult">

<DashboardCard class="h-card" collapsible-key="contractResult">
<template v-slot:title>
Expand Down Expand Up @@ -118,7 +118,7 @@

<ContractResultLogs :logs="contractResult?.logs" :block-number="blockNumber" :transaction-hash="transactionHash"/>

</div>
</template>

</template>

Expand Down
6 changes: 1 addition & 5 deletions src/components/topic/TopicMessage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@

<template>

<div v-if="message">

<DashboardCard class="h-card" collapsible-key="messageSubmitted">
<DashboardCard v-if="message" class="h-card" collapsible-key="messageSubmitted">
<template v-slot:title>
<span class="h-is-secondary-title">Message Submitted</span>
</template>
Expand Down Expand Up @@ -58,8 +56,6 @@
</template>
</DashboardCard>

</div>

</template>

<!-- --------------------------------------------------------------------------------------------------------------- -->
Expand Down
Loading