mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 05:36:56 +00:00
chore(nc-gui): fix type issues and set proper ref types
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
<script setup lang="ts">
|
||||
import CloseIcon from '~icons/material-symbols/close-rounded'
|
||||
|
||||
const { feedbackForm } = useGlobal()
|
||||
|
||||
const showForm = ref(false)
|
||||
|
||||
setTimeout(() => (showForm.value = true), 60000)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div v-if="showForm && feedbackForm && !feedbackForm.isHidden" class="nc-feedback-form-wrapper mt-6">
|
||||
<CloseIcon class="nc-close-icon" @click="feedbackForm.isHidden = true" />
|
||||
<MaterialSymbolsCloseRounded class="nc-close-icon" @click="feedbackForm.isHidden = true" />
|
||||
|
||||
<iframe :src="feedbackForm.url" width="100%" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading… </iframe>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user