Skip to content

Commit

Permalink
Not correctly labeled checks (#8689)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoBiscosi committed Sep 2, 2024
1 parent 6a7e11c commit 34b77a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/lua/modules/checks.lua
Original file line number Diff line number Diff line change
Expand Up @@ -412,10 +412,10 @@ local function init_check(check, mod_fname, full_path, script, script_type, subd

-- Possibly localize the input title/description
if check.gui.input_title then
check.gui.input_title = check.gui.input_title
check.gui.input_title = i18n(check.gui.input_title)
end
if check.gui.input_description then
check.gui.input_description = check.gui.input_description
check.gui.input_description = i18n(check.gui.input_description)
end
end

Expand Down

0 comments on commit 34b77a6

Please sign in to comment.