Fixes info field not correctly displayed (#8707)

This commit is contained in:
Matteo Biscosi 2024-09-26 15:30:45 +02:00
parent ad5494e710
commit ce8d2fa3ea
7 changed files with 58 additions and 14 deletions

View file

@ -2776,3 +2776,16 @@ function shortFlowLabel(flow)
end
-- #######################
-- A one line flow description
-- This uses the information from flow.getInfo()
function format_flow_info_field(flow)
local info = ""
if not isEmptyString(flow["info"]) then
end
return info
end
-- #######################