Skip to content

Commit 8f998b1

Browse files
committed
lint
1 parent e75b9fe commit 8f998b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Road.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export default {
117117
mounted () {
118118
const visibleList = JSON.parse(this.$cookies.get('visibleList' + this.roadID));
119119
if (this.$store.state.cookiesAllowed && visibleList) {
120-
if (Array.isArray(visibleList) && visibleList.length == this.numSems) {
120+
if (Array.isArray(visibleList) && visibleList.length === this.numSems) {
121121
this.visibleList = visibleList;
122122
} else {
123123
this.$cookies.remove('visibleList' + this.roadID);

0 commit comments

Comments
 (0)