diff --git a/packages/presentation/src/components/AttributeBarEditor.svelte b/packages/presentation/src/components/AttributeBarEditor.svelte index 466e5a57d5..bca74df694 100644 --- a/packages/presentation/src/components/AttributeBarEditor.svelte +++ b/packages/presentation/src/components/AttributeBarEditor.svelte @@ -76,6 +76,7 @@ this={instance} label={attribute?.label} placeholder={attribute?.label} + type={attribute?.type} {maxWidth} value={getAttribute(client, object, { key: attributeKey, attr: attribute })} space={object.space} @@ -97,6 +98,7 @@ this={instance} label={attribute?.label} placeholder={attribute?.label} + type={attribute?.type} {maxWidth} value={getAttribute(client, object, { key: attributeKey, attr: attribute })} space={object.space} @@ -113,6 +115,7 @@ this={instance} label={attribute?.label} placeholder={attribute?.label} + type={attribute?.type} {maxWidth} value={getAttribute(client, object, { key: attributeKey, attr: attribute })} space={object.space} @@ -130,6 +133,7 @@ placeholder={attribute?.label} kind={'link'} size={'large'} + type={attribute?.type} {maxWidth} value={getAttribute(client, object, { key: attributeKey, attr: attribute })} space={object.space} @@ -142,6 +146,7 @@