[arvados-workbench2] updated: 2.7.0-248-g3e3dec8b
git repository hosting
git at public.arvados.org
Sat Dec 9 02:07:13 UTC 2023
Summary of changes:
src/components/data-explorer/data-explorer.tsx | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
via 3e3dec8b2504a47aa407878aea111dd49ab1a8e6 (commit)
from 1cd60c69e5306f19dc26429379792151cdb274b8 (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 3e3dec8b2504a47aa407878aea111dd49ab1a8e6
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Fri Dec 8 21:07:07 2023 -0500
21280: removed excess whitespace from search results Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>~
diff --git a/src/components/data-explorer/data-explorer.tsx b/src/components/data-explorer/data-explorer.tsx
index 715d2e69..0733da43 100644
--- a/src/components/data-explorer/data-explorer.tsx
+++ b/src/components/data-explorer/data-explorer.tsx
@@ -44,10 +44,9 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
title: {
display: "inline-block",
paddingLeft: theme.spacing.unit * 2,
- paddingTop: theme.spacing.unit * 3,
+ paddingTop: theme.spacing.unit * 2,
fontSize: "18px",
paddingRight: "10px",
- marginBottom: '-50px'
},
subProcessTitle: {
display: "inline-block",
@@ -196,6 +195,7 @@ export const DataExplorer = withStyles(styles)(
paperKey,
fetchMode,
currentItemUuid,
+ currentRoute,
title,
progressBar,
doHidePanel,
@@ -221,7 +221,7 @@ export const DataExplorer = withStyles(styles)(
wrap="nowrap"
className={classes.container}
>
- <div className={classes.titleWrapper}>
+ <div className={classes.titleWrapper} style={currentRoute?.includes('search-results') ? {marginBottom: '-20px'} : {}}>
{title && (
<Grid
item
@@ -303,6 +303,7 @@ export const DataExplorer = withStyles(styles)(
item
xs="auto"
className={classes.dataTable}
+ style={currentRoute?.includes('search-results') ? {marginTop: '-10px'} : {}}
>
<DataTable
columns={this.props.contextMenuColumn ? [...columns, this.contextMenuColumn] : columns}
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list