mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 03:35:37 +00:00
fix: managed app modal issue
This commit is contained in:
@@ -101,7 +101,7 @@ watch(
|
||||
|
||||
// Auto-select logic (only if autoSelect is enabled and no current value)
|
||||
if (!modelValue.value && props.autoSelect) {
|
||||
const firstBase = newBaseList[0]
|
||||
const firstBase = newBaseList[0]!
|
||||
|
||||
if (firstBase.ncItemDisabled) {
|
||||
modelValue.value = newBaseList.find((base) => !base.ncItemDisabled)?.value || firstBase.value
|
||||
|
||||
@@ -117,7 +117,7 @@ const { formState, isLoading, submit } = useProvideFormBuilderHelper({
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="flex flex-col">
|
||||
<div class="flex flex-col h-full">
|
||||
<div class="p-4 w-full flex items-center gap-3 border-b border-nc-border-gray-medium">
|
||||
<div class="w-10 h-10 rounded-lg bg-gradient-to-br from-brand-500 to-brand-600 flex items-center justify-center">
|
||||
<GeneralIcon icon="ncBox" class="w-5 h-5 text-white" />
|
||||
|
||||
Reference in New Issue
Block a user