Skip to content

Commit

Permalink
Check for points by using point attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
lehecht committed Jan 11, 2024
1 parent a769ca1 commit b208f0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default {
return this.selected ? 'Undo dismissing this annotation' : 'Dismiss this annotation';
},
isPoint() {
return this.svg !== null ? this.svg.includes('r="3"') : false;
return this.svg !== null ? this.svg.includes('isPoint="true"') : false;
},
svgSrcUrl() {
// Replace file extension by svg file format
Expand Down

0 comments on commit b208f0d

Please sign in to comment.