From 7d13278b0863732f6e2b632790f510bd573f54a6 Mon Sep 17 00:00:00 2001 From: Eduard Duocastella Date: Wed, 10 May 2023 17:05:48 +0200 Subject: [PATCH] fixed crossed value --- src/resources/views/fields/timeRangeValue.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/resources/views/fields/timeRangeValue.blade.php b/src/resources/views/fields/timeRangeValue.blade.php index 68883c02..ac0d4094 100644 --- a/src/resources/views/fields/timeRangeValue.blade.php +++ b/src/resources/views/fields/timeRangeValue.blade.php @@ -28,10 +28,10 @@
- iteration.'][start]'}}' value='{{$v->start}}' name='{{$field.'['.$loop->iteration.'][end]'}}' placeholder='start' style='width:132px'> + iteration.'][start]'}}' value='{{$v->start}}' name='{{$field.'['.$loop->iteration.'][start]'}}' placeholder='start' style='width:132px'>
- iteration.'][end]'}}' value='{{$v->end}}' name='{{$field.'['.$loop->iteration.'][start]'}}' placeholder='end' style='width:132px'> + iteration.'][end]'}}' value='{{$v->end}}' name='{{$field.'['.$loop->iteration.'][end]'}}' placeholder='end' style='width:132px'>
@if(! $keyValueField->valueOptions)