Skip to content

Commit

Permalink
Use proper background color in NavigatorSection (#5252)
Browse files Browse the repository at this point in the history
* Use proper background color in NavigatorSection

* add changeset
  • Loading branch information
poulch authored Nov 14, 2024
1 parent 1ec6635 commit 19e5347
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/hungry-pans-run.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"saleor-dashboard": patch
---

Open search using keyboard shortcuts no more cause Dashboard crash
4 changes: 2 additions & 2 deletions src/components/Navigator/NavigatorSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ const NavigatorSearchSection: React.FC<NavigatorSearchSectionProps> = props => {
paddingY={2}
borderRadius={4}
backgroundColor={{
hover: "interactiveBrandSecondaryHovering",
active: "interactiveBrandSecondaryFocused",
hover: "accent1Hovered",
active: "accent1Hovered",
}}
selected={highlightedIndex === index}
key={[item.label, item.type].join(":")}
Expand Down

0 comments on commit 19e5347

Please sign in to comment.