Skip to content

Commit

Permalink
Add handling for line type in vector layer (#143)
Browse files Browse the repository at this point in the history
* Add handling for line type in vector layer

* Lint

* Clean it up 🧹
  • Loading branch information
arjxn-py authored Sep 17, 2024
1 parent 9962f94 commit c023a5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/base/src/mainview/mainView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ export class MainView extends React.Component<IProps, IStates> {
color:
layerParameters.type === 'fill' || layerParameters.type === 'circle'
? layerParameters.color
: '#F092DD'
: 'rgba(0, 0, 0, 0)'
});

const stroke = new Stroke({
Expand Down

0 comments on commit c023a5c

Please sign in to comment.