Skip to content
Merged
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
6 changes: 3 additions & 3 deletions lua/wikis/commons/BroadcastTalentTable.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ end

-- template entry point
---@param frame Frame
---@return Html?
---@return Widget?
function BroadcastTalentTable.run(frame)
return BroadcastTalentTable(Arguments.getArgs(frame)):create()
end
Expand Down Expand Up @@ -210,7 +210,7 @@ function BroadcastTalentTable:_fetchTournaments()
end

--- Creates the display
---@return Html?
---@return Widget?
function BroadcastTalentTable:create()
if not self.tournaments then
return
Expand Down Expand Up @@ -302,7 +302,7 @@ end

---@private
---@param broadcast EnrichedBroadcast
---@return Html
---@return Widget
function BroadcastTalentTable:_row(broadcast)
local tournament = Tournament.getTournament(broadcast.parent)
---@cast tournament -nil
Expand Down
Loading