@yuuvis/client-core 2.8.2 → 2.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1897,11 +1897,7 @@ class SystemService {
|
|
|
1897
1897
|
return res;
|
|
1898
1898
|
}
|
|
1899
1899
|
toFormElement(field) {
|
|
1900
|
-
|
|
1901
|
-
// Tables come with 'columnDefinitions' from the schema. We need to rename this to 'elements' for our form renderer
|
|
1902
|
-
if (field.columnDefinitions)
|
|
1903
|
-
res.elements = field.columnDefinitions;
|
|
1904
|
-
return res;
|
|
1900
|
+
return { ...field, label: this.getLocalizedLabel(field.id), name: field.id, type: field.propertyType };
|
|
1905
1901
|
}
|
|
1906
1902
|
updateAuthData(data) {
|
|
1907
1903
|
this.authData = { ...this.authData, ...data };
|