Skip to content

Commit

Permalink
Merge pull request #135 from keitaroinc/fix-issue-134
Browse files Browse the repository at this point in the history
Fix Issue #134
  • Loading branch information
gocemitevski authored Oct 17, 2023
2 parents 33313f7 + 29ed0bb commit caaf46b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/CanvasLogo/CanvasLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ export const CanvasLogo: React.FunctionComponent<CanvasLogoProps> = (props) => {
aria-label="Logo Type"
>
{logoOptions.map((option) => (
<option key={option.label} value={option.src}>
<option
key={option.label}
value={option.src}
selected={canvasLogoValues.src === option.src}
>
{option.label}
</option>
))}
Expand Down

0 comments on commit caaf46b

Please sign in to comment.