From b070be5855b69950df7b9da7c2b59ad4f711d88f Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Mon, 19 Feb 2018 09:11:23 +0100 Subject: [PATCH] fix(powered-by): correctly display logo in IE/Edge --- lib/util/PoweredByUtil.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/PoweredByUtil.js b/lib/util/PoweredByUtil.js index e443889f..4678e104 100644 --- a/lib/util/PoweredByUtil.js +++ b/lib/util/PoweredByUtil.js @@ -14,7 +14,7 @@ var domDelegate = require('min-dom/lib/delegate'); // inlined ../../resources/logo.svg var BPMNIO_LOGO_SVG = ''; -var BPMNIO_LOGO_URL = 'data:image/svg+xml;utf8,' + encodeURIComponent(BPMNIO_LOGO_SVG); +var BPMNIO_LOGO_URL = 'data:image/svg+xml,' + encodeURIComponent(BPMNIO_LOGO_SVG); var BPMNIO_IMG = '';