mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
refactor(editor): Correct some prop types (no-changelog) (#10907)
This commit is contained in:
committed by
GitHub
parent
769ddfdd1d
commit
60ee0d4ce7
@@ -3,8 +3,8 @@ import { onMounted, reactive, toRefs, onBeforeUnmount } from 'vue';
|
||||
import { useExternalHooks } from '@/composables/useExternalHooks';
|
||||
|
||||
export interface Props {
|
||||
placeholder: string;
|
||||
modelValue: string;
|
||||
placeholder?: string;
|
||||
modelValue?: string;
|
||||
}
|
||||
|
||||
withDefaults(defineProps<Props>(), {
|
||||
|
||||
@@ -12,7 +12,7 @@ import LinkItem from '../ItemTypes/LinkItem.vue';
|
||||
import CategorizedItemsRenderer from './CategorizedItemsRenderer.vue';
|
||||
|
||||
export interface Props {
|
||||
elements: INodeCreateElement[];
|
||||
elements?: INodeCreateElement[];
|
||||
activeIndex?: number;
|
||||
disabled?: boolean;
|
||||
lazyRender?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user