Skip to content

Commit

Permalink
[PLA-1465] [PLA-1059] [PLA-1478] fix navbar (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
zlayine authored Dec 11, 2023
1 parent ff6c621 commit ed7a2b7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions resources/js/components/UserNavbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<!-- Mobile menu button -->
<div class="-ml-2 mr-2 space-x-2 flex items-center md:hidden animate-slide-in">
<DisclosureButton
v-if="(appStore.isMultiTenant && appStore.hasValidConfig) || !appStore.isMultiTenant"
class="inline-flex items-center justify-center rounded-md p-2 text-gray-400 hover:bg-gray-100 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary-light"
>
<Bars3Icon v-if="!open" class="block h-6 w-6" aria-hidden="true" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<Address :address="Royalty.getRoyaltyBeneficiary(item)" />

<dt class="text-sm font-medium text-gray-500">Percentage</dt>
<dd class="mt-1 text-sm text-gray-900">{{ Royalty.getRoyaltyPercentage(item) * 100 }}%</dd>
<dd class="mt-1 text-sm text-gray-900">{{ Royalty.getRoyaltyPercentage(item) }}%</dd>
</div>

<div class="space-y-2 pt-4 pb-3">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,14 @@

<div class="space-y-2 pt-4 pb-3" v-if="transaction.transactionHash">
<dt class="text-base font-medium text-gray-500">Transaction Hash</dt>
<dd class="mt-1 text-sm text-gray-900 break-words">
{{ transaction.transactionHash }}
<CopyTextIcon :text="transaction.transactionHash" />
<dd class="flex items-center mt-1 text-sm text-gray-900">
<a
:href="getSubscanUrl(transaction.transactionHash)"
target="_blank"
class="text-primary font-medium truncate"
>
{{ transaction.transactionHash }}
</a>
</dd>
</div>

Expand Down

0 comments on commit ed7a2b7

Please sign in to comment.