mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 08:14:57 +00:00
13 lines
210 B
Lua
13 lines
210 B
Lua
-- Text column definition
|
|
local function text_column(id, label, width)
|
|
return {
|
|
type = "text",
|
|
id = id,
|
|
label = label,
|
|
width = width or "auto",
|
|
sortable = true
|
|
}
|
|
end
|
|
|
|
return text_column
|