We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e75b9fe commit 8f998b1Copy full SHA for 8f998b1
src/components/Road.vue
@@ -117,7 +117,7 @@ export default {
117
mounted () {
118
const visibleList = JSON.parse(this.$cookies.get('visibleList' + this.roadID));
119
if (this.$store.state.cookiesAllowed && visibleList) {
120
- if (Array.isArray(visibleList) && visibleList.length == this.numSems) {
+ if (Array.isArray(visibleList) && visibleList.length === this.numSems) {
121
this.visibleList = visibleList;
122
} else {
123
this.$cookies.remove('visibleList' + this.roadID);
0 commit comments