Skip to content

Commit

Permalink
Merge pull request #24 from ConductionNL/feature/CONNECTOR-66/synchro…
Browse files Browse the repository at this point in the history
…-fields-fix

removed required from fields
  • Loading branch information
RalkeyOfficial authored Oct 7, 2024
2 parents 5355c23 + 73bb44b commit 81fc1af
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions src/modals/Synchronization/EditSynchronization.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,22 @@ import { synchronizationStore, navigationStore, sourceStore } from '../../store/
label="Description" />

<NcTextField :value.sync="synchronizationItem.sourceId"
label="sourceId"
required />
label="sourceId" />

<NcTextField :value.sync="synchronizationItem.sourceType"
label="sourceType"
required />
label="sourceType" />

<NcTextField :value.sync="synchronizationItem.sourceTargetMapping"
label="sourceTargetMapping"
required />
label="sourceTargetMapping" />

<NcTextField :value.sync="synchronizationItem.targetId"
label="targetId"
required />
label="targetId" />

<NcTextField :value.sync="synchronizationItem.targetType"
label="targetType"
required />
label="targetType" />

<NcTextField :value.sync="synchronizationItem.targetSourceMapping"
label="targetSourceMapping"
required />
label="targetSourceMapping" />
</form>

<NcButton
Expand All @@ -71,7 +65,6 @@ import {
NcModal,
NcTextField,
NcTextArea,
NcSelect,
NcLoadingIcon,
NcNoteCard,
} from '@nextcloud/vue'
Expand All @@ -84,7 +77,6 @@ export default {
NcButton,
NcTextField,
NcTextArea,
NcSelect,
NcLoadingIcon,
NcNoteCard,
// Icons
Expand Down

0 comments on commit 81fc1af

Please sign in to comment.