Skip to content

Commit

Permalink
Use the correct icon for the extract column shortcut (#42415)
Browse files Browse the repository at this point in the history
  • Loading branch information
romeovs committed May 9, 2024
1 parent 252c942 commit 3a33bba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ function colorForIcon(icon: string | undefined | null) {
return { normal: color("accent1"), highlighted: color("brand-white") };
case "function":
case "combine":
case "split":
case "arrow_split":
return { normal: color("brand"), highlighted: color("brand-white") };
default:
return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export const ExpressionWidget = <Clause extends object = Lib.ExpressionClause>(
!startRule && {
shortcut: true,
name: t`Extract columns`,
icon: "split",
icon: "arrow_split",
group: "shortcuts",
action: () => setIsExtractingColumn(true),
},
Expand Down

0 comments on commit 3a33bba

Please sign in to comment.