From afed6f514d711e6fd33aebd9d031f2fce592be02 Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Sun, 12 May 2024 15:05:36 -0400 Subject: [PATCH] removed stray space in annunciator Coolant Level Low --- coordinator/ui/components/unit_detail.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coordinator/ui/components/unit_detail.lua b/coordinator/ui/components/unit_detail.lua index fe36a85..2c26b98 100644 --- a/coordinator/ui/components/unit_detail.lua +++ b/coordinator/ui/components/unit_detail.lua @@ -183,7 +183,7 @@ local function init(parent, id) local rad_wrn = IndicatorLight{parent=annunciator,label="Radiation Warning",colors=ind_yel} local r_rtrip = IndicatorLight{parent=annunciator,label="RCP Trip",colors=ind_red} local r_cflow = IndicatorLight{parent=annunciator,label="RCS Flow Low",colors=ind_yel} - local r_clow = IndicatorLight{parent=annunciator,label="Coolant Level Low",colors=ind_yel} + local r_clow = IndicatorLight{parent=annunciator,label="Coolant Level Low",colors=ind_yel} local r_temp = IndicatorLight{parent=annunciator,label="Reactor Temp. High",colors=ind_red} local r_rhdt = IndicatorLight{parent=annunciator,label="Reactor High Delta T",colors=ind_yel} local r_firl = IndicatorLight{parent=annunciator,label="Fuel Input Rate Low",colors=ind_yel}