Skip to content

Commit 53d3642

Browse files
Fix array to string warning
1 parent 2c5e847 commit 53d3642

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/pages/admin/form/condition_handler_templates/input.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<input
3434
class="me-2 form-control value-selector flex-grow-1 min-width-200"
35-
value="{{ input_value }}"
35+
value="{{ input_value is array ? "" : input_value }}"
3636
name="{{ input_name }}"
3737
placeholder="{{ __("Enter a value...") }}"
3838
data-glpi-conditions-editor-value

0 commit comments

Comments
 (0)