Skip to content

Commit 3eb2e54

Browse files
authored
lint: cell sidebar (#427)
1 parent 2de72b1 commit 3eb2e54

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/react/src/components/notebook/cell/sidebar/CellSidebarButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ export function CellSidebarButton(props: ICellSidebarProps): JSX.Element {
132132
<IconButton
133133
size="small"
134134
color="secondary"
135-
aria-label="Add code cell above"
136-
title="Add code cell above"
135+
aria-label="Add code cell below"
136+
title="Add code cell below"
137137
onClick={e => {
138138
e.preventDefault();
139139
commands.execute(NotebookCommandIds.insertBelow).catch(reason => {

packages/react/src/examples/extensions/celltoolbar/CellToolbarComponent.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ export const CellToolbarComponent = (props: ICellToolbarComponentProps) => {
135135
<IconButton
136136
size="small"
137137
color="secondary"
138-
aria-label="Add code cell above"
139-
title="Add code cell above"
138+
aria-label="Add code cell below"
139+
title="Add code cell below"
140140
onClick={e => {
141141
e.preventDefault();
142142
notebookStore.insertBelow({

0 commit comments

Comments
 (0)