summaryrefslogtreecommitdiffstats
path: root/src/components/Properties
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-01-30 12:51:55 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-01-30 12:51:55 +0100
commit41e8ec164713dc6b51754575e6da92995dd55df9 (patch)
tree080e849b8870f3bfdc0ef448b0ee25553e654c68 /src/components/Properties
parenta1561dfe3a728f3b636852df05d36c1947883dd7 (diff)
Fix string detection, put delete in last and fix properties scoping
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/components/Properties')
-rw-r--r--src/components/Properties/PropertyText.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Properties/PropertyText.vue b/src/components/Properties/PropertyText.vue
index 447775ab..106ccf2b 100644
--- a/src/components/Properties/PropertyText.vue
+++ b/src/components/Properties/PropertyText.vue
@@ -147,7 +147,7 @@ export default {
},
haveExtHandler() {
- return this.externalHandler !== '' && this.value && this.value.length > 0
+ return this.externalHandler.trim() !== '' && this.value && this.value.length > 0
}
},