Skip to content

Commit

Permalink
Fix #2446: Apostrophes are allowed in names. (#2462)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria authored Jun 10, 2024
1 parent c6a81d1 commit 56c2f6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class="bg-neutral-800 text-sm rounded-full w-full px-4 pl-8 py-1 focus:outline-n
@foreach ($this->albumList as $result)
<li class="border-b border-neutral-700 cursor-pointer transition-all ease-in-out duration-300
hover:bg-gradient-to-b hover:from-primary-500 hover:to-primary-600 hover:text-text-main-0"
wire:click="$parent.setAlbum('{{ $result['id'] }}', '{{ $result['original'] }}')">
wire:click='$parent.setAlbum("{{ $result['id'] }}", @json($result['original']))'>
<a class="px-3 py-1 flex items-center"
@if ($loop->last) @keydown.tab="isOpen = false" @endif
>
Expand Down

0 comments on commit 56c2f6d

Please sign in to comment.