Skip to content

Commit

Permalink
fixing accordion typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MuchQuak committed Sep 24, 2024
1 parent 7872011 commit 0610d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/core/accordion.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@props(['id', 'label', 'name', 'open' => false, 'variant' => false])
<div id={{$id ?? uniqid()}} data-blade-accordion x-data="{ open: {{ $open? 'true': 'false'}}}" {{ $attributes->twMerge('w-full')}}>
<div id="{{$id ?? uniqid()}}" data-blade-accordion x-data="{ open: {{ $open? 'true': 'false'}}}" {{ $attributes->twMerge('w-full')}}>
<!-- Accordion Title --->
<x-button x-on:click="open = !open" :variant="$variant" class="w-full rounded-sm px-0 text-xl mb-1 hover:ease-in duration-150">
<div class="flex w-full py-1 ">
Expand Down

0 comments on commit 0610d39

Please sign in to comment.