Skip to content

Commit

Permalink
Use black instead of undefined for no palette
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Mar 21, 2024
1 parent b7bc66c commit a250fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/components/dialogs/FeatureDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const Table = observer(function ({ model }: { model: MsaViewModel }) {
style={{
width: 20,
height: 20,
background: palette[idx],
background: palette[idx] || 'black',
}}
></div>
</td>
Expand Down

0 comments on commit a250fae

Please sign in to comment.