Skip to content

Commit

Permalink
chore: fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
tanthammar authored and github-actions[bot] committed Jan 14, 2025
1 parent 74fa509 commit a3f19e1
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions packages/tables/resources/views/columns/text-input-column.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@endphp

<div
x-data="{
x-data="{
error: undefined,
isEditing: false,
Expand All @@ -32,7 +32,7 @@
state: @js($state),
}"
x-init="
x-init="
() => {
Livewire.hook('commit', ({ component, commit, succeed, fail, respond }) => {
succeed(({ snapshot, effect }) => {
Expand Down Expand Up @@ -61,33 +61,33 @@
})
}
"
{{
$attributes
->merge($getExtraAttributes(), escape: false)
->class([
'fi-ta-text-input w-full min-w-48',
'px-3 py-4' => ! $isInline(),
])
}}
{{
$attributes
->merge($getExtraAttributes(), escape: false)
->class([
'fi-ta-text-input w-full min-w-48',
'px-3 py-4' => ! $isInline(),
])
}}
>
<input
type="hidden"
value="{{ str($state)->replace('"', '\\"') }}"
x-ref="newState"
type="hidden"
value="{{ str($state)->replace('"', '\\"') }}"
x-ref="newState"
/>

<x-filament::input.wrapper
:alpine-disabled="'isLoading || ' . \Illuminate\Support\Js::from($isDisabled)"
alpine-valid="error === undefined"
x-tooltip="
:alpine-disabled="'isLoading || ' . \Illuminate\Support\Js::from($isDisabled)"
alpine-valid="error === undefined"
x-tooltip="
error === undefined
? false
: {
content: error,
theme: $store.theme,
}
"
x-on:click.stop.prevent=""
x-on:click.stop.prevent=""
>
{{-- format-ignore-start --}}
<x-filament::input
Expand Down

0 comments on commit a3f19e1

Please sign in to comment.