Skip to content

Commit

Permalink
Fix incorrect refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
danrahn committed Oct 20, 2024
1 parent 224f6c8 commit 72759e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Client/Script/ServerSettingsDialog/PathMappingsTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class PathMappingsTable {
/**
* Return a "no path mappings" spanning table row. */
#noPathMappingsRow() {
return $tr('tr', { class : 'noPathMappings' }, $td('No path mappings', { colspan : 3 }));
return $tr({ class : 'noPathMappings' }, $td('No path mappings', { colspan : 3 }));
}

/**
Expand Down

0 comments on commit 72759e7

Please sign in to comment.