Skip to content

Commit

Permalink
fix error on links
Browse files Browse the repository at this point in the history
  • Loading branch information
Rathoz committed Oct 14, 2024
1 parent 2905c40 commit 5044b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/widget/infobox/widget_infobox_links.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ local Links = Class.new(Widget)
local PRIORITY_GROUPS = Lua.import('Module:Links/PriorityGroups', {loadData = true})

function Links:render()
local linkInputs = Table.copy(self.props.links)
local linkInputs = Table.copy(self.props.links or {})

local links = {}

Expand Down

0 comments on commit 5044b9f

Please sign in to comment.