report edit preferences forum set value issues solved ( #37wkxxj )
This commit is contained in:
parent
49ca1aeb1c
commit
20b2877796
@ -39,6 +39,7 @@
|
|||||||
label="{{ $field['title'] }}"
|
label="{{ $field['title'] }}"
|
||||||
data-field="settings"
|
data-field="settings"
|
||||||
:attributes="$field['attributes']"
|
:attributes="$field['attributes']"
|
||||||
|
:dynamic-attributes="$field['attributes']"
|
||||||
/>
|
/>
|
||||||
@break
|
@break
|
||||||
|
|
||||||
@ -49,16 +50,18 @@
|
|||||||
label="{{ $field['title'] }}"
|
label="{{ $field['title'] }}"
|
||||||
data-field="settings"
|
data-field="settings"
|
||||||
:attributes="$field['attributes']"
|
:attributes="$field['attributes']"
|
||||||
|
:dynamic-attributes="$field['attributes']"
|
||||||
/>
|
/>
|
||||||
@break
|
@break
|
||||||
|
|
||||||
@case('password')
|
@case('password')
|
||||||
@case('passwordGroup')
|
@case('passwordGroup')
|
||||||
<x-form.group.email
|
<x-form.group.password
|
||||||
name="{{ $field['name'] }}"
|
name="{{ $field['name'] }}"
|
||||||
label="{{ $field['title'] }}"
|
label="{{ $field['title'] }}"
|
||||||
data-field="settings"
|
data-field="settings"
|
||||||
:attributes="$field['attributes']"
|
:attributes="$field['attributes']"
|
||||||
|
:dynamic-attributes="$field['attributes']"
|
||||||
/>
|
/>
|
||||||
@break
|
@break
|
||||||
|
|
||||||
@ -69,6 +72,7 @@
|
|||||||
label="{{ $field['title'] }}"
|
label="{{ $field['title'] }}"
|
||||||
data-field="settings"
|
data-field="settings"
|
||||||
:attributes="$field['attributes']"
|
:attributes="$field['attributes']"
|
||||||
|
:dynamic-attributes="$field['attributes']"
|
||||||
/>
|
/>
|
||||||
@break
|
@break
|
||||||
|
|
||||||
@ -83,6 +87,7 @@
|
|||||||
'model' => 'form.settings'.'.'.$field['name'],
|
'model' => 'form.settings'.'.'.$field['name'],
|
||||||
'show-date-format' => company_date_format(),
|
'show-date-format' => company_date_format(),
|
||||||
], $field['attributes'])"
|
], $field['attributes'])"
|
||||||
|
:dynamic-attributes="$field['attributes']"
|
||||||
/>
|
/>
|
||||||
@break
|
@break
|
||||||
|
|
||||||
@ -92,9 +97,10 @@
|
|||||||
name="{{ $field['name'] }}"
|
name="{{ $field['name'] }}"
|
||||||
label="{{ $field['title'] }}"
|
label="{{ $field['title'] }}"
|
||||||
:options="$field['values']"
|
:options="$field['values']"
|
||||||
:selected="$field['selected']"
|
:selected="isset($report->settings->{$field['name']}) ? $report->settings->{$field['name']} : $field['selected']"
|
||||||
data-field="settings"
|
data-field="settings"
|
||||||
:attributes="$field['attributes']"
|
:attributes="$field['attributes']"
|
||||||
|
:dynamic-attributes="$field['attributes']"
|
||||||
/>
|
/>
|
||||||
@break
|
@break
|
||||||
|
|
||||||
@ -106,6 +112,7 @@
|
|||||||
:attributes="array_merge([
|
:attributes="array_merge([
|
||||||
'data-field' => 'settings'
|
'data-field' => 'settings'
|
||||||
], $field['attributes'])"
|
], $field['attributes'])"
|
||||||
|
:dynamic-attributes="$field['attributes']"
|
||||||
/>
|
/>
|
||||||
@break
|
@break
|
||||||
|
|
||||||
@ -117,6 +124,7 @@
|
|||||||
:attributes="array_merge([
|
:attributes="array_merge([
|
||||||
'data-field' => 'settings'
|
'data-field' => 'settings'
|
||||||
], $field['attributes'])"
|
], $field['attributes'])"
|
||||||
|
:dynamic-attributes="$field['attributes']"
|
||||||
/>
|
/>
|
||||||
@break
|
@break
|
||||||
|
|
||||||
@ -127,6 +135,7 @@
|
|||||||
:attributes="array_merge([
|
:attributes="array_merge([
|
||||||
'data-field' => 'settings'
|
'data-field' => 'settings'
|
||||||
], $field['attributes'])"
|
], $field['attributes'])"
|
||||||
|
:dynamic-attributes="$field['attributes']"
|
||||||
/>
|
/>
|
||||||
@endswitch
|
@endswitch
|
||||||
@endforeach
|
@endforeach
|
||||||
|
Loading…
x
Reference in New Issue
Block a user