mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 08:14:57 +00:00
13 lines
211 B
Lua
13 lines
211 B
Lua
-- Action column definition
|
|
local function action_column(id, actions)
|
|
return {
|
|
type = "actions",
|
|
id = id,
|
|
label = "",
|
|
width = "120px",
|
|
actions = actions or {}
|
|
}
|
|
end
|
|
|
|
return action_column
|