diff --git a/.woodpecker.yml b/.woodpecker.yml index b5b6e889..cad4b698 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -7,7 +7,7 @@ pipeline: commands: - yarn - yarn lint - - yarn stylelint + #- yarn stylelint test: when: diff --git a/package.json b/package.json index 5b5b568c..bf803011 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "unit:watch": "karma start test/unit/karma.conf.js --single-run=false", "e2e": "node test/e2e/runner.js", "test": "npm run unit && npm run e2e", - "stylelint": "npx stylelint src/components/status/status.scss", + "stylelint": "stylelint src/**/*.scss", "lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs", "lint-fix": "eslint --fix --ext .js,.vue src test/unit/specs test/e2e/specs" }, diff --git a/src/components/user_profile/user_profile.js b/src/components/user_profile/user_profile.js index 42c5ec9e..6e9bf097 100644 --- a/src/components/user_profile/user_profile.js +++ b/src/components/user_profile/user_profile.js @@ -184,7 +184,7 @@ const UserProfile = { }, watch: { '$route.params.id': function (newVal) { - if (isUserPage(this.$route) && newVal) { + if (isUserPage(this.$route) && ewVal) { this.switchUser(newVal) } },