Skip to content

Commit 4484aee

Browse files
AchoArnoldCopilot
andcommitted
fix(web): use strict equality to fix eqeqeq lint errors
Replace == with === in pages/settings/index.vue at lines 1671 and 1772 to resolve eslint eqeqeq rule violations causing CI failure. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 37c5dcb commit 4484aee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web/pages/settings/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1668,7 +1668,7 @@ export default Vue.extend({
16681668
},
16691669
16701670
getWeekday(index: number): string {
1671-
return this.weekDays.find((x) => x.value == index)?.label ?? ''
1671+
return this.weekDays.find((x) => x.value === index)?.label ?? ''
16721672
},
16731673
16741674
scheduleSummary(schedule: EntitiesMessageSendSchedule) {
@@ -1769,7 +1769,7 @@ export default Vue.extend({
17691769
const messages = this.errorMessages.has('windows')
17701770
? this.errorMessages.get('windows')
17711771
: []
1772-
if (messages.length == 0) {
1772+
if (messages.length === 0) {
17731773
return null
17741774
}
17751775

0 commit comments

Comments
 (0)