File tree Expand file tree Collapse file tree 1 file changed +2
-16
lines changed
src/packages/frontend/jupyter Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -126,27 +126,13 @@ export const CellButtonBar: React.FC<Props> = React.memo(
126
126
{
127
127
key : "all-above" ,
128
128
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" ,
137
130
onClick : ( ) => actions ?. run_all_above_cell ( id ) ,
138
131
} ,
139
132
{
140
133
key : "all-below" ,
141
134
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" ,
150
136
onClick : ( ) => actions ?. run_all_below_cell ( id ) ,
151
137
} ,
152
138
] ,
You can’t perform that action at this time.
0 commit comments