Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions optgen/optgen-dashboard.lua
Original file line number Diff line number Diff line change
Expand Up @@ -501,17 +501,17 @@ end
-- Create Base Functions
--=================================================--
local function create_tab(label, icon)
local tab<const> = Tab(label);
local tab<const> = TabVue(label);
tab:set_icon(icon);
tab:push("# " .. label);
return tab;
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

Expand Down Expand Up @@ -1764,7 +1764,7 @@ end
--=================================================--
-- Create Dashboard
--=================================================--
local dashboard<const> = Dashboard();
local dashboard<const> = DashboardVue();
dashboard:push(tab_expansion_result());

local sddp_tab = tab_sddp();
Expand Down