Remove extra braces around elements

This commit is contained in:
Gabriel Tofvesson 2024-10-12 04:14:23 +02:00
parent c2996cf1ff
commit 26ecd2a90d

View File

@ -486,7 +486,7 @@ local PAGES = {
bottom = 0,
left = math.floor((state.width - (PADDING_RQC_H * 2) - #("Request") - #("Available")) / 2),
right = math.ceil((state.width - (PADDING_RQC_H * 2) - #("Request") - #("Available")) / 2),
element = { Text:new{ text = "/" } }
element = Text:new{ text = "/" }
},
Text:new{ text = "Available" },
}
@ -501,7 +501,7 @@ local PAGES = {
bottom = 0,
left = math.floor((state.width - (PADDING_RQC_H * 2) - #tostring(pageState.request) - #tostring(group:getItemCount())) / 2),
right = math.ceil((state.width - (PADDING_RQC_H * 2) - #tostring(pageState.request) - #tostring(group:getItemCount())) / 2),
element = { Text:new{ text = "/" } }
element = Text:new{ text = "/" }
},
Text:new{ id = "data_available", text = tostring(group:getItemCount()) },
}