1
0
Fork 0

sparkles: Added name and version without spaces to avoid validation issues

This commit is contained in:
Joost De Cock 2018-09-05 15:51:48 +02:00
parent ea6b5be5a7
commit 75660c8bd6

View file

@ -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");
}
}