diff --git a/zero.Backoffice.UI/app/components/ui-pick.vue b/zero.Backoffice.UI/app/components/ui-pick.vue index b086a6ed..253dde33 100644 --- a/zero.Backoffice.UI/app/components/ui-pick.vue +++ b/zero.Backoffice.UI/app/components/ui-pick.vue @@ -223,7 +223,7 @@ if (this.previews.length > 0) { - html += ': ' + this.previews.map(p => p[this.configuration.keys.name]).join(', ') + ''; + html += (html ? ': ' : '') + '' + this.previews.map(p => p[this.configuration.keys.name]).join(', ') + ''; } return html; diff --git a/zero.Backoffice.UI/app/components/ui-property.vue b/zero.Backoffice.UI/app/components/ui-property.vue index 9778cd74..3d3ea408 100644 --- a/zero.Backoffice.UI/app/components/ui-property.vue +++ b/zero.Backoffice.UI/app/components/ui-property.vue @@ -1,7 +1,7 @@