Skip to content

Commit

Permalink
Merge pull request #16550 from Nexus-Mods/fblo_fixed_checkboxes
Browse files Browse the repository at this point in the history
fblo: fixed checkboxes not rendering
  • Loading branch information
insomnious authored Oct 9, 2024
2 parents 233b31a + 99b3cd1 commit 64eceae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extensions/file_based_loadorder/views/ItemRenderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ItemRenderer extends ComponentEx<IProps, {}> {
const item = Array.isArray(this.props.item)
? this.props.item[0].loEntry
: this.props.item.loEntry;
const displayCheckboxes = item.displayCheckboxes;
const displayCheckboxes = this.props.item.displayCheckboxes ?? false;
return this.renderDraggable(item, displayCheckboxes);
}

Expand Down

0 comments on commit 64eceae

Please sign in to comment.