Skip to content

Commit e4ea09e

Browse files
authored
Fix editing nextExecutionTime of scheduled tasks (#293)
1 parent 628f9db commit e4ea09e

File tree

2 files changed

+11
-7
lines changed
  • src/Resources/app/administration/src

2 files changed

+11
-7
lines changed

src/Resources/app/administration/src/module/frosh-tools/component/frosh-tools-tab-scheduled/template.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
:column="column"
3636
:compact="compact"
3737
:value="item[column.property]"
38-
@input="item[column.property] = $event">
38+
@update:value="item[column.property] = $event">
3939
</sw-data-grid-inline-edit>
4040

4141
<span v-else>
Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
{% block sw_data_grid_inline_edit_type_unknown %}
22
<sw-datepicker
33
v-else-if="column.inlineEdit === 'date'"
4-
dateType="date"
5-
v-model="currentValue">
6-
</sw-datepicker>
4+
key="date"
5+
date-type="date"
6+
v-model:value="currentValue"
7+
name="sw-field--currentValue"
8+
/>
79

810
<sw-datepicker
911
v-else-if="column.inlineEdit === 'datetime'"
10-
dateType="datetime"
11-
v-model="currentValue">
12-
</sw-datepicker>
12+
key="datetime"
13+
date-type="datetime"
14+
v-model:value="currentValue"
15+
name="sw-field--currentValue"
16+
/>
1317

1418
{% parent() %}
1519
{% endblock %}

0 commit comments

Comments
 (0)