From 03db816cd6a85e137d81b80fde5294f48ef9fd0a Mon Sep 17 00:00:00 2001 From: Iury Date: Mon, 19 Jan 2026 19:01:59 -0300 Subject: [PATCH] Update OPTGEN dashboard template --- optgen/optgen-dashboard.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/optgen/optgen-dashboard.lua b/optgen/optgen-dashboard.lua index 07d6795..e5c37be 100644 --- a/optgen/optgen-dashboard.lua +++ b/optgen/optgen-dashboard.lua @@ -501,7 +501,7 @@ end -- Create Base Functions --=================================================-- local function create_tab(label, icon) - local tab = Tab(label); + local tab = TabVue(label); tab:set_icon(icon); tab:push("# " .. label); return tab; @@ -509,9 +509,9 @@ end local function create_chart(label, case) if cases == 1 then - return Chart(label); + return ChartVue(label); else - return Chart(label .. " (case " .. case .. ")"); + return ChartVue(label .. " (case " .. case .. ")"); end end @@ -1764,7 +1764,7 @@ end --=================================================-- -- Create Dashboard --=================================================-- -local dashboard = Dashboard(); +local dashboard = DashboardVue(); dashboard:push(tab_expansion_result()); local sddp_tab = tab_sddp();