fix: replace use of window
This commit is contained in:
		| @@ -1,5 +1,5 @@ | ||||
| <template> | ||||
| <XWindow ref="window" :initial-width="400" :initial-height="500" :can-resize="true" @closed="emit('closed')"> | ||||
| <XWindow ref="uiWindow" :initial-width="400" :initial-height="500" :can-resize="true" @closed="emit('closed')"> | ||||
| 	<template #header> | ||||
| 		<i class="fas fa-exclamation-circle" style="margin-right: 0.5em;"></i> | ||||
| 		<I18n :src="i18n.ts.reportAbuseOf" tag="span"> | ||||
| @@ -40,7 +40,7 @@ const emit = defineEmits<{ | ||||
| 	(ev: 'closed'): void; | ||||
| }>(); | ||||
|  | ||||
| const window = ref<InstanceType<typeof XWindow>>(); | ||||
| const uiWindow = ref<InstanceType<typeof XWindow>>(); | ||||
| const comment = ref(props.initialComment || ''); | ||||
|  | ||||
| function send() { | ||||
| @@ -52,7 +52,7 @@ function send() { | ||||
| 			type: 'success', | ||||
| 			text: i18n.ts.abuseReported | ||||
| 		}); | ||||
| 		window.value?.close(); | ||||
| 		uiWindow.value?.close(); | ||||
| 		emit('closed'); | ||||
| 	}); | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Johann150
					Johann150