Skip to content

Commit

Permalink
fix frozen assessment bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-stebbings committed Feb 20, 2024
1 parent 08ffed3 commit a3e68d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class HeatDimensionAssessment extends ScopedRegistryHost(InputAssessmentC
return html`<nh-icon
data-item=${value}
.selected=${intValue && intValue.Integer == value}
.frozen=${intValue && intValue.Integer == value}
.frozen=${intValue && intValue.Integer}
@select=${this.assessor({ Integer: value })}
@select-start=${this.logEvent}
@select-cancel=${this.logEvent}
Expand Down

0 comments on commit a3e68d0

Please sign in to comment.