alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Merge branch 'development'
author
Pouria Delfanazari
date
9 months ago
(Oct 22, 2025, 2:27 PM -0700)
commit
ff18c9b6
ff18c9b6a928fa064f5885fd42003c56320ad2ef
parent
c6473262
c6473262312c521fb723c799fb46767004d6baf3
+2
-2
2 changed files
Expand all
Collapse all
Unified
Split
src
webapp
features
collections
containers
collectionContainer
CollectionContainer.tsx
semble
components
SembleHeader
SembleHeader.tsx
+1
-1
src/webapp/features/collections/containers/collectionContainer/CollectionContainer.tsx
View file
Reviewed
···
59
59
<Text fw={700} c="grape">
60
60
Collection
61
61
</Text>
62
62
-
<Title order={1} lh={0.8}>
62
62
+
<Title order={1} style={{ wordBreak: 'break-all' }}>
63
63
{firstPage.name}
64
64
</Title>
65
65
{firstPage.description && (
+1
-1
src/webapp/features/semble/components/SembleHeader/SembleHeader.tsx
View file
Reviewed
···
48
48
</Text>
49
49
50
50
{metadata.title && (
51
51
-
<Title order={1} lh={0.8}>
51
51
+
<Title order={1} style={{ wordBreak: 'break-all' }}>
52
52
{metadata.title}
53
53
</Title>
54
54
)}