From 75660c8bd68fc99b50c6effdded873705729bc4d Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Wed, 5 Sep 2018 15:51:48 +0200 Subject: [PATCH] sparkles: Added name and version without spaces to avoid validation issues --- packages/plugin-title/src/index.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/plugin-title/src/index.js b/packages/plugin-title/src/index.js index 1bed991ad9f..5c16e875873 100644 --- a/packages/plugin-title/src/index.js +++ b/packages/plugin-title/src/index.js @@ -24,10 +24,8 @@ export default { .attr("data-text-class", "title-name"); this.points._titlePattern = so.at .shift(-90, 20) - .attr( - "data-text", - this.context.config.name + " v" + this.context.config.version - ) + .attr("data-text", this.context.config.name) + .attr("data-text", "v" + this.context.config.version) .attr("data-text-class", "title-pattern fill-note"); } }