Skip to content

Commit c023a5c

Browse files
authored
Add handling for line type in vector layer (#143)
* Add handling for line type in vector layer * Lint * Clean it up 🧹
1 parent 9962f94 commit c023a5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/base/src/mainview/mainView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ export class MainView extends React.Component<IProps, IStates> {
647647
color:
648648
layerParameters.type === 'fill' || layerParameters.type === 'circle'
649649
? layerParameters.color
650-
: '#F092DD'
650+
: 'rgba(0, 0, 0, 0)'
651651
});
652652

653653
const stroke = new Stroke({

0 commit comments

Comments
 (0)