Skip to content
Snippets Groups Projects
Verified Commit 3dda2db1 authored by Dorian Koch's avatar Dorian Koch
Browse files

Conflict resolution for object modifications, closes #55

parent 7c9a61ab
No related branches found
No related tags found
No related merge requests found
Pipeline #6437 passed
......@@ -10,6 +10,7 @@ http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
charset utf-8;
server {
listen 7000;
......
This diff is collapsed.
......@@ -23,7 +23,12 @@ type EditorArgs = {
hideErrors?: boolean;
};
export function createOMFieldEditor(description: field_description, args: EditorArgs) {
export function OMFieldEditor({
description,
...args
}: {
description: field_description;
} & EditorArgs) {
const { value } = args;
switch (description.type) {
case "string":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment