Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/modals/object/EditObject.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { objectStore, schemaStore, registerStore, navigationStore } from '../../

<template>
<NcDialog v-if="navigationStore.modal === 'editObject'"
name="Object"
:name="objectStore.objectItem?.id ? 'Edit Object' : 'Add Object'"
size="normal"
:can-close="false">
<NcNoteCard v-if="success" type="success">
Expand Down
2 changes: 1 addition & 1 deletion src/modals/register/EditRegister.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { registerStore, schemaStore, sourceStore, navigationStore } from '../../

<template>
<NcDialog v-if="navigationStore.modal === 'editRegister'"
name="Register"
:name="registerStore.registerItem?.id ? 'Edit Register' : 'Add Register'"
size="normal"
:can-close="false">
<NcNoteCard v-if="success" type="success">
Expand Down
2 changes: 1 addition & 1 deletion src/modals/schema/EditSchema.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { schemaStore, navigationStore, sourceStore } from '../../store/store.js'

<template>
<NcDialog v-if="navigationStore.modal === 'editSchema'"
name="Schema"
:name="schemaStore.schemaItem?.id ? 'Edit Schema' : 'Add Schema'"
size="normal"
:can-close="false">
<NcNoteCard v-if="success" type="success">
Expand Down
2 changes: 1 addition & 1 deletion src/modals/source/EditSource.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { sourceStore, navigationStore } from '../../store/store.js'

<template>
<NcDialog v-if="navigationStore.modal === 'editSource'"
name="Source"
:name="sourceStore.sourceItem?.id ? 'Edit Source' : 'Add Source'"
size="normal"
:can-close="false">
<NcNoteCard v-if="success" type="success">
Expand Down