Skip to content

Commit

Permalink
fix(squad): header order on overwatch (#4234)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rathoz authored Apr 29, 2024
1 parent a5552b4 commit df76aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/squad/wikis/overwatch/squad_custom.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ local HAS_NUMBER = false

function CustomInjector:parse(id, widgets)
if id == 'header_name' and HAS_NUMBER then
table.insert(widgets, Widget.TableCellNew{content = {'Number'}, header = true})
table.insert(widgets, 1, Widget.TableCellNew{content = {'Number'}, header = true})
end

return self._base:parse(id, widgets)
Expand Down

0 comments on commit df76aeb

Please sign in to comment.