[arvados] updated: 2.7.0-6070-g025fe32c57
git repository hosting
git at public.arvados.org
Tue Mar 26 18:04:40 UTC 2024
Summary of changes:
.../views-components/project-details-card/project-details-card.tsx | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
via 025fe32c579a8a4d8683d3d1776e7ffe16449ea0 (commit)
from cc00f6534670f45240cab7f34f20d22d09479b09 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 025fe32c579a8a4d8683d3d1776e7ffe16449ea0
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Tue Mar 26 14:04:34 2024 -0400
21224: chip section css fixed Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/services/workbench2/src/views-components/project-details-card/project-details-card.tsx b/services/workbench2/src/views-components/project-details-card/project-details-card.tsx
index f52e28b427..ce38f796c0 100644
--- a/services/workbench2/src/views-components/project-details-card/project-details-card.tsx
+++ b/services/workbench2/src/views-components/project-details-card/project-details-card.tsx
@@ -41,6 +41,7 @@ type CssRules =
| 'faveIcon'
| 'frozenIcon'
| 'accountStatusSection'
+ | 'chipSection'
| 'tag'
| 'description';
@@ -84,7 +85,6 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
display: 'flex',
flexDirection: 'column',
paddingTop: 0,
- paddingBottom: '-1rem',
paddingLeft: '0.5rem',
},
nameSection: {
@@ -116,6 +116,9 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
alignItems: 'center',
paddingLeft: '1rem',
},
+ chipSection: {
+ marginBottom: '-2rem',
+ },
tag: {
marginRight: '0.75rem',
marginBottom: '0.5rem',
@@ -386,7 +389,7 @@ const ProjectCard: React.FC<ProjectCardProps> = ({ classes, currentResource, fro
data-cy='project-description'
>
<CardContent className={classes.cardContent}>
- <Typography component='div'>
+ <Typography component='div' className={classes.chipSection}>
{Object.keys(currentResource.properties).map((k) =>
Array.isArray(currentResource.properties[k])
? currentResource.properties[k].map((v: string) => getPropertyChip(k, v, undefined, classes.tag))
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list