@@ -40,4 +40,17 @@
-
\ No newline at end of file
+
+
+
diff --git a/frontend/app/features/schemas/pages/schema/fields/forms/field-form-ui.component.scss b/frontend/app/features/schemas/pages/schema/fields/forms/field-form-ui.component.scss
index 54750016b..e69de29bb 100644
--- a/frontend/app/features/schemas/pages/schema/fields/forms/field-form-ui.component.scss
+++ b/frontend/app/features/schemas/pages/schema/fields/forms/field-form-ui.component.scss
@@ -1,3 +0,0 @@
-.form-group {
- margin-bottom: 1rem;
-}
\ No newline at end of file
diff --git a/frontend/app/shared/services/schemas.types.ts b/frontend/app/shared/services/schemas.types.ts
index 86fceaf53..4fd44e9d2 100644
--- a/frontend/app/shared/services/schemas.types.ts
+++ b/frontend/app/shared/services/schemas.types.ts
@@ -135,6 +135,7 @@ export abstract class FieldPropertiesDto {
public readonly editorUrl?: string;
public readonly hints?: string;
public readonly isRequired: boolean = false;
+ public readonly isHalfWidth: boolean = false;
public readonly label?: string;
public readonly placeholder?: string;
public readonly tags?: ReadonlyArray
;
diff --git a/frontend/app/shared/state/schemas.forms.ts b/frontend/app/shared/state/schemas.forms.ts
index 882d083d9..975583702 100644
--- a/frontend/app/shared/state/schemas.forms.ts
+++ b/frontend/app/shared/state/schemas.forms.ts
@@ -214,6 +214,7 @@ export class EditFieldForm extends Form {
],
editorUrl: null,
isRequired: false,
+ isHalfWidth: false,
tags: []
}));
}