mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 09:36:49 +00:00
fix(nc-gui): review changes
This commit is contained in:
@@ -6,9 +6,9 @@ interface Props {
|
||||
iconSize?: OnboardingQuestionType['iconSize']
|
||||
}
|
||||
|
||||
const props = withDefaults(defineProps<Props>(), {})
|
||||
const props = defineProps<Props>()
|
||||
|
||||
const { iconItem, optionIndex, totalOptions, iconSize } = toRefs(props)
|
||||
const { iconItem } = toRefs(props)
|
||||
|
||||
const showIconMapIcon = computed(() => {
|
||||
return (!iconItem.value.iconType || iconItem.value.iconType === 'iconMap') && iconItem.value.icon
|
||||
@@ -80,5 +80,3 @@ const iconColors = computed(() => {
|
||||
<div v-else></div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped></style>
|
||||
|
||||
@@ -6,9 +6,7 @@ interface Props {
|
||||
iconSize?: OnboardingQuestionType['iconSize']
|
||||
}
|
||||
|
||||
const props = withDefaults(defineProps<Props>(), {})
|
||||
|
||||
const { option, iconSize } = toRefs(props)
|
||||
defineProps<Props>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
@@ -6,9 +6,7 @@ interface Props {
|
||||
iconSize?: OnboardingQuestionType['iconSize']
|
||||
}
|
||||
|
||||
const props = withDefaults(defineProps<Props>(), {})
|
||||
|
||||
const { option } = toRefs(props)
|
||||
defineProps<Props>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
Reference in New Issue
Block a user