Return proper value from click handler

This commit is contained in:
Gabriel Tofvesson 2024-10-12 01:04:38 +02:00
parent 4425e1b0c7
commit c01b258e51

View File

@ -418,6 +418,7 @@ local PAGES = {
},
onClick = function(e, x, y, s)
state:setPage("REQUEST")
return true
end
}
},
@ -426,6 +427,7 @@ local PAGES = {
parent = state.monitor,
onClick = function(e, x, y, s)
state:setPage("MAIN")
return true
end
}
@ -446,6 +448,7 @@ local PAGES = {
parent = state.monitor,
onClick = function(e, x, y, s)
state:setPage("GROUP_DETAIL")
return true
end
}