Fix dialog form updating issue

This commit is contained in:
JannisX11 2024-05-13 19:22:42 +02:00
parent a14448bf88
commit 2aea22ed1f

View File

@ -782,8 +782,8 @@ Interface.CustomElements.SelectInput = function(id, data) {
icon: val.icon || ((value == key) ? 'far.fa-dot-circle' : 'far.fa-circle'),
color: val.color,
condition: val.condition,
click: (e) => {
setKey(key, options, e);
click: (context, event) => {
setKey(key, options, event || 1);
}
})
}