chore: lint + bump deps
This commit is contained in:
@@ -146,7 +146,7 @@ defineActionHandler("modals.search.toggle", () => {
|
||||
showSearch.value = !showSearch.value
|
||||
})
|
||||
|
||||
onMounted(async () => {
|
||||
onMounted(() => {
|
||||
window.addEventListener("online", () => {
|
||||
isOnLine.value = true
|
||||
})
|
||||
|
||||
@@ -194,7 +194,7 @@ export default defineComponent({
|
||||
this.debouncer()
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
created() {
|
||||
if (process.browser) {
|
||||
this.worker = this.$worker.createRejexWorker()
|
||||
this.worker.addEventListener("message", this.workerResponseHandler)
|
||||
|
||||
@@ -268,7 +268,7 @@ export default defineComponent({
|
||||
else this.$refs.versionOptions.tippy().enable()
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
created() {
|
||||
if (process.browser) {
|
||||
this.worker = this.$worker.createRejexWorker()
|
||||
this.worker.addEventListener("message", this.workerResponseHandler)
|
||||
|
||||
@@ -126,7 +126,7 @@ export default defineComponent({
|
||||
this.debouncer()
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
created() {
|
||||
if (process.browser) {
|
||||
this.worker = this.$worker.createRejexWorker()
|
||||
this.worker.addEventListener("message", this.workerResponseHandler)
|
||||
|
||||
@@ -272,7 +272,7 @@ export default defineComponent({
|
||||
deep: true,
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
created() {
|
||||
if (process.browser) {
|
||||
this.worker = this.$worker.createRejexWorker()
|
||||
this.worker.addEventListener("message", this.workerResponseHandler)
|
||||
|
||||
@@ -402,6 +402,9 @@ import {
|
||||
TeamInvitationAddedDocument,
|
||||
TeamInvitationRemovedDocument,
|
||||
TeamMemberRole,
|
||||
GetPendingInvitesDocument,
|
||||
GetPendingInvitesQuery,
|
||||
GetPendingInvitesQueryVariables,
|
||||
} from "../../helpers/backend/graphql"
|
||||
import {
|
||||
createTeamInvitation,
|
||||
@@ -409,11 +412,6 @@ import {
|
||||
revokeTeamInvitation,
|
||||
} from "../../helpers/backend/mutations/TeamInvitation"
|
||||
import { GQLError, useGQLQuery } from "~/helpers/backend/GQLClient"
|
||||
import {
|
||||
GetPendingInvitesDocument,
|
||||
GetPendingInvitesQuery,
|
||||
GetPendingInvitesQueryVariables,
|
||||
} from "~/helpers/backend/graphql"
|
||||
|
||||
const {
|
||||
$toast,
|
||||
|
||||
Reference in New Issue
Block a user