Skip to content

Commit

Permalink
fix the tagBefore and tagAfter slot.
Browse files Browse the repository at this point in the history
  • Loading branch information
shivendra-webkul committed Oct 10, 2024
1 parent d4f923d commit 56fc97b
Showing 1 changed file with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@
detach-endpoint="{{ $detachEndpoint }}"
:added-tags='@json($addedTags)'
>
<template #tag-before>
{{ $tagBefore ?? '' }}
</template>

<template #tag-after>
{{ $tagAfter ?? '' }}
</template>

@isset($tagBefore)
<template #tag-before>
{{ $tagBefore ?? '' }}
</template>
@endisset

@isset($tagAfter)
<template #tag-after>
{{ $tagAfter ?? '' }}
</template>
@endisset
<x-admin::shimmer.tags count="3" />
</v-tags>

Expand Down

0 comments on commit 56fc97b

Please sign in to comment.