automatic lint fixes (#14942)

* automatic lint fixes

* rerun lint

---------

Co-authored-by: negue <eugen.bolz@gmail.com>
This commit is contained in:
Phillip Thelen
2023-12-04 20:37:05 +01:00
committed by GitHub
parent 8db8a8267b
commit 916cb03a3a
41 changed files with 246 additions and 154 deletions

View File

@@ -413,6 +413,11 @@ export default {
groupLink,
},
mixins: [challengeMemberSearchMixin, externalLinks, userStateMixin],
async beforeRouteUpdate (to, from, next) {
this.searchId = to.params.challengeId;
await this.loadChallenge();
next();
},
props: ['challengeId'],
data () {
return {
@@ -487,11 +492,6 @@ export default {
updated () {
this.handleExternalLinks();
},
async beforeRouteUpdate (to, from, next) {
this.searchId = to.params.challengeId;
await this.loadChallenge();
next();
},
methods: {
cleanUpTask (task) {
const cleansedTask = omit(task, TASK_KEYS_TO_REMOVE);