Revert "chore(lint): run fix"

This reverts commit 15fdf2d75a.
This commit is contained in:
Sabe Jones
2021-08-26 22:50:46 -05:00
parent a6e32d0822
commit 5179440f77
64 changed files with 230 additions and 305 deletions

View File

@@ -28,6 +28,7 @@
</div>
</template>
<style lang="scss" scoped>
@import '~@/assets/scss/colors.scss';
@@ -79,6 +80,11 @@ export default {
UserLabel,
QuestInfo,
},
data () {
return {
leader: null,
};
},
props: {
item: {
type: Object,
@@ -87,25 +93,6 @@ export default {
type: Object,
},
},
data () {
return {
leader: null,
};
},
computed: {
itemText () {
if (this.item.text instanceof Function) {
return this.item.text();
}
return this.item.text;
},
itemNotes () {
if (this.item.notes instanceof Function) {
return this.item.notes();
}
return this.item.notes;
},
},
async created () {
if (this.group && this.group.quest && this.group.quest.active) {
try {
@@ -119,5 +106,19 @@ export default {
}
}
},
computed: {
itemText () {
if (this.item.text instanceof Function) {
return this.item.text();
}
return this.item.text;
},
itemNotes () {
if (this.item.notes instanceof Function) {
return this.item.notes();
}
return this.item.notes;
},
},
};
</script>