Skip to content

Commit d7d60b9

Browse files
fix(frontend): prevent pagination limit label clashing & remove extra tooltip title
1 parent 41ce86d commit d7d60b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/relay-workflows-lib/lib/query-components/RetriggerWorkflow.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ const RetriggerWorkflowBase: React.FC<RetriggerWorkflowProps> = ({
4646
return templateName ? (
4747
<Tooltip title="Rerun workflow">
4848
<NavLink
49-
title="Rerun workflow"
5049
to={`/templates/${templateName}/${visitToText(
5150
instrumentSession,
5251
)}-${workflowName}`}

frontend/workflows-lib/lib/components/common/PaginationControls.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ export default function PaginationControls({
4242
boundaryCount={0}
4343
/>
4444
<FormControl sx={{ width: 80 }}>
45-
<InputLabel id="workflows-limit-label">Workflows Limit</InputLabel>
45+
<InputLabel id="workflows-limit-label">Limit</InputLabel>
4646
<Select
4747
labelId="workflows-limit-label"
4848
id="workflows-limit-select"
4949
size="small"
50+
label="Limit"
5051
value={selectedLimit.toString()}
5152
onChange={(e) => {
5253
onLimitChange(Number(e.target.value));

0 commit comments

Comments
 (0)