We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66a4b5e commit d3b6142Copy full SHA for d3b6142
1 file changed
resources/views/components/incident-timeline.blade.php
@@ -8,6 +8,16 @@
8
<div class="flex
9
items-center justify-center gap-2 text-sm text-zinc-500 dark:text-zinc-400"
10
x-data="{ from: new Date(@js($from)), to: new Date(@js($to)) }">
11
+
12
+ <x-filament::input.wrapper disabled>
13
+ <x-filament::input
14
+ type="date"
15
+ wire:model="date"
16
+ value="{{ $to }}"
17
+ disabled
18
+ />
19
+ </x-filament::input.wrapper>
20
+ —
21
<x-filament::input.wrapper :disabled="$recentIncidentsOnly">
22
<x-filament::input
23
type="date"
@@ -20,15 +30,6 @@
30
:disabled="$recentIncidentsOnly"
31
/>
32
</x-filament::input.wrapper>
- —
24
- <x-filament::input.wrapper disabled>
25
- <x-filament::input
26
- type="date"
27
- wire:model="date"
28
- value="{{ $to }}"
29
- disabled
- />
- </x-filament::input.wrapper>
33
</div>
34
35
0 commit comments