Skip to content
This repository was archived by the owner on Aug 21, 2024. It is now read-only.

Commit 47ca0b8

Browse files
authored
added tailwind class to break the line in the middle of words to prevent overflowing the alocated space (#10944)
1 parent 81d4317 commit 47ca0b8

File tree

1 file changed

+1
-1
lines changed
  • packages/ui/src/components/editor/panels/Properties/material

1 file changed

+1
-1
lines changed

packages/ui/src/components/editor/panels/Properties/material/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export function MaterialEditor(props: { materialUUID: EntityUUID }) {
220220
<div className="justify-cneter flex items-center align-middle">
221221
<label>{t('editor:properties.mesh.material.path')}</label>
222222
</div>
223-
<div>{getOptionalComponent(entity, SourceComponent) ?? 'None'}</div>
223+
<div className="break-all">{getOptionalComponent(entity, SourceComponent) ?? 'None'}</div>
224224
</div>
225225
</InputGroup>
226226
<br />

0 commit comments

Comments
 (0)