rename action to desition

This commit is contained in:
2026-02-17 20:26:42 +01:00
parent ef4876b083
commit d20ef85ceb
7 changed files with 26 additions and 26 deletions

View File

@@ -80,10 +80,10 @@ function UI.create_numeric_stepper(label, value_getter, value_setter, min, max,
}
end
function UI.create_action_item(label, action)
function UI.create_desition_item(label, desition)
return {
label = label,
action = action,
type = "action_item"
desition = desition,
type = "desition_item"
}
end