[fix] SVG export for arrows with labels but no arrowheads (#1229)
This PR fixes a bug where arrow shapes without arrowheads would not mask their labels when exporting images.
This commit is contained in:
parent
dc16ae1b12
commit
f315ea2250
1 changed files with 1 additions and 1 deletions
|
@ -918,7 +918,7 @@ export class TLArrowUtil extends TLShapeUtil<TLArrowShape> {
|
|||
const maskId = (shape.id + '_clip').replace(':', '_')
|
||||
|
||||
// If we have any arrowheads, then mask the arrowheads
|
||||
if (as || ae) {
|
||||
if (as || ae || labelSize) {
|
||||
// Create mask for arrowheads
|
||||
|
||||
// Create defs
|
||||
|
|
Loading…
Reference in a new issue