Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/libs/datamanager/src/components/App/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
content: "";
position: absolute;
height: 4px;
background: linear-gradient(to bottom, var(--black_15), transparent);
background: linear-gradient(to bottom, rgba(var(--color-neutral-shadow-raw) / 20%) 0%, transparent 100%);
}
}

Expand Down
11 changes: 10 additions & 1 deletion web/libs/datamanager/src/components/Common/FieldsButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,22 @@ export const FieldsButton = injector(
tooltip,
tooltipTheme = "dark",
openUpwardForShortViewport = true,
"data-testid": dataTestId,
}) => {
const content = [];

if (title) content.push(<React.Fragment key="f-button-title">{title}</React.Fragment>);

const renderButton = () => {
return (
<Button variant="neutral" size="small" look="outlined" leading={icon} trailing={trailingIcon}>
<Button
variant="neutral"
size="small"
look="outlined"
leading={icon}
trailing={trailingIcon}
data-testid={dataTestId}
>
{content.length ? content : null}
</Button>
);
Expand Down Expand Up @@ -112,6 +120,7 @@ export const FieldsButton = injector(
look="outlined"
leading={icon}
trailing={trailingIcon}
data-testid={dataTestId}
>
{content.length ? content : null}
</Button>
Expand Down
Loading
Loading