fix(interface/textui): localise input

This commit is contained in:
Linden
2022-04-18 23:30:58 +10:00
parent e7ede94866
commit f4e0739b04

View File

@@ -1,3 +1,5 @@
local input
function lib.inputDialog(heading, rows)
if input then return end
input = promise.new()
@@ -10,6 +12,7 @@ function lib.inputDialog(heading, rows)
inputs = rows
}
})
return Citizen.Await(input)
end