mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-30 16:54: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
|