Add missing element field

This commit is contained in:
Gabriel Tofvesson 2024-10-12 17:58:01 +02:00
parent fdfa8d21bf
commit 2afa27bdac

View File

@ -360,7 +360,7 @@ local PAGES = {
local function tabActionButton(count) local function tabActionButton(count)
local text = count < 0 and ("<"..tostring(-count)) or (tostring(count)..">") local text = count < 0 and ("<"..tostring(-count)) or (tostring(count)..">")
return Padding:new{ return Padding:new{
Text:new{ id = tostring(count), text = text } element = Text:new{ id = tostring(count), text = text }
} }
end end