1
0
Fork 0

🚧 Added missing closing tag for style block

This commit is contained in:
Joost De Cock 2018-07-16 09:10:12 +02:00
parent 8725aeabe5
commit 659e57916c

View file

@ -67,7 +67,7 @@ export class Svg {
this.indent();
svg += this.nl()+this.style;
this.outdent();
svg += this.nl()+']]> >'+this.nl();
svg += this.nl()+']]> >'+this.nl()+'</style>'+this.nl();
return svg;
}