Skip to content

Commit 8453ad7

Browse files
committed
pr #7599 -- naming consistency
1 parent 17c41ef commit 8453ad7

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

src/packages/frontend/jupyter/cell-buttonbar.tsx

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -126,27 +126,13 @@ export const CellButtonBar: React.FC<Props> = React.memo(
126126
{
127127
key: "all-above",
128128
icon: <Icon name={RUN_ALL_CELLS_ABOVE_ICON} />,
129-
label: (
130-
<Tooltip
131-
title={"Run all cells above this one, excluding this cell"}
132-
placement={"left"}
133-
>
134-
Run All Above
135-
</Tooltip>
136-
),
129+
label: "Run All Above Selected Cell",
137130
onClick: () => actions?.run_all_above_cell(id),
138131
},
139132
{
140133
key: "all-below",
141134
icon: <Icon name={RUN_ALL_CELLS_BELOW_ICON} rotate={"90"} />,
142-
label: (
143-
<Tooltip
144-
title={"Run all cells below this one, including this cell"}
145-
placement={"left"}
146-
>
147-
Run All Below
148-
</Tooltip>
149-
),
135+
label: "Run Selected Cell and All Below",
150136
onClick: () => actions?.run_all_below_cell(id),
151137
},
152138
],

0 commit comments

Comments
 (0)