diff --git a/src/client/dd-hub-react/src/sections/document/doc-item.tsx b/src/client/dd-hub-react/src/sections/document/doc-item.tsx index fb7a591..0fb9d99 100644 --- a/src/client/dd-hub-react/src/sections/document/doc-item.tsx +++ b/src/client/dd-hub-react/src/sections/document/doc-item.tsx @@ -73,14 +73,14 @@ export function DocItem({ display: 'flex', flexWrap: 'wrap', color: 'text.disabled', - justifyContent: 'flex-end', + justifyContent: 'flex-start', }} > {[ - { data: doc.addedWho, icon: 'solar:chat-round-dots-bold' }, - { data: doc.changedWho, icon: 'solar:eye-bold' }, - { data: doc.changedWhen?.toLocaleDateString('de-DE'), icon: 'solar:share-bold' }, - ].map((info, _index) => ( + { data: doc.addedWho, icon: 'gridicons:add' }, + { data: doc.changedWho, icon: 'material-symbols:change-circle-rounded' }, + { data: doc.changedWhen?.toLocaleDateString('de-DE'), icon: 'material-symbols:change-circle-rounded' }, + ].filter(info => info.data).map((info, _index) => (