From 659e57916ca8f51cba331228a80ec6da4a54b3a1 Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Mon, 16 Jul 2018 09:10:12 +0200 Subject: [PATCH] :construction: Added missing closing tag for style block --- lib/svg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/svg.ts b/lib/svg.ts index 5c9111ef990..3346ef73142 100644 --- a/lib/svg.ts +++ b/lib/svg.ts @@ -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()+''+this.nl(); return svg; }