From 5acab9dc88bce2cedc2ae9ab01065a230ad2305a Mon Sep 17 00:00:00 2001 From: nullptr Date: Wed, 21 Aug 2024 13:31:36 +0200 Subject: [PATCH] fix(mincut): set buttons to editable to enable them on web --- updates/36/36012/ws/dml.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/updates/36/36012/ws/dml.sql b/updates/36/36012/ws/dml.sql index 91a16473dd..ac6bd89196 100644 --- a/updates/36/36012/ws/dml.sql +++ b/updates/36/36012/ws/dml.sql @@ -260,3 +260,4 @@ VALUES ('v_edit_inp_valve', 'form_feature', 'tab_epa', 'custom_dint', 'lyt_data_ UPDATE config_form_fields SET iseditable=false where columnname='macrominsector_id'; UPDATE config_form_fields SET iseditable=false where columnname='to_arc' and formname like 've_node%'; +update config_form_fields SET iseditable=true where formtype = 'form_mincut' and widgettype = 'button';