mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1019 B
52 lines
1019 B
3 years ago
|
<template>
|
||
3 years ago
|
<div v-if="!feedbackFormHidden" class="nc-feedback-form-wrapper">
|
||
|
<v-icon class="nc-close-icon" large @click="feedbackFormHidden = true">
|
||
|
mdi-close-circle-outline
|
||
|
</v-icon>
|
||
|
|
||
|
<iframe
|
||
|
src="https://docs.google.com/forms/d/e/1FAIpQLSeTlAfZjszgr53lArz3NvUEnJGOT9JtG9NAU5d0oQwunDS2Pw/viewform?embedded=true"
|
||
|
width="100%"
|
||
|
height="500"
|
||
|
frameborder="0"
|
||
|
marginheight="0"
|
||
|
marginwidth="0"
|
||
|
>Loading…
|
||
|
</iframe>
|
||
|
</div>
|
||
|
<div v-else />
|
||
3 years ago
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
3 years ago
|
name: 'FeedbackForm',
|
||
|
computed: {
|
||
|
feedbackFormHidden: {
|
||
|
get() {
|
||
3 years ago
|
return this.$store.state.settings.feedbackFormHidden
|
||
3 years ago
|
},
|
||
|
set(val) {
|
||
3 years ago
|
this.$store.commit('settings/MutFeedbackFormHidden', val)
|
||
3 years ago
|
}
|
||
|
}
|
||
|
}
|
||
3 years ago
|
}
|
||
|
</script>
|
||
|
|
||
3 years ago
|
<style scoped lang="scss">
|
||
|
.nc-feedback-form-wrapper {
|
||
|
width: 100%;
|
||
|
position: relative;
|
||
|
|
||
|
iframe {
|
||
|
margin: 0 auto;
|
||
|
}
|
||
3 years ago
|
|
||
3 years ago
|
.nc-close-icon {
|
||
|
position: absolute;
|
||
|
top: 5px;
|
||
|
right: 10px;
|
||
|
}
|
||
|
}
|
||
3 years ago
|
</style>
|