summaryrefslogtreecommitdiffstats
path: root/webapp/src
diff options
context:
space:
mode:
authorUdo Walter2018-09-18 12:25:22 +0200
committerUdo Walter2018-09-18 12:25:22 +0200
commitc1567c60f47e68cb11af85177d7ea59194fac6df (patch)
treee0c28bf8c2e29fca965277f49d1bff3acbcd1c9c /webapp/src
parent[configurator] small bugfixes (diff)
downloadbas-c1567c60f47e68cb11af85177d7ea59194fac6df.tar.gz
bas-c1567c60f47e68cb11af85177d7ea59194fac6df.tar.xz
bas-c1567c60f47e68cb11af85177d7ea59194fac6df.zip
[configurator] remove spacer
Diffstat (limited to 'webapp/src')
-rw-r--r--webapp/src/components/ConfiguratorModuleConfig.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/components/ConfiguratorModuleConfig.vue b/webapp/src/components/ConfiguratorModuleConfig.vue
index 9cb450e..3e6abb4 100644
--- a/webapp/src/components/ConfiguratorModuleConfig.vue
+++ b/webapp/src/components/ConfiguratorModuleConfig.vue
@@ -120,7 +120,7 @@ export default {
...mapState('configurator', ['dialog', 'entries']),
availableEntries () {
var selectedEntryIds = this.items.map(x => x.entry.id)
- return [...this.entries.filter(x => !selectedEntryIds.includes(x.id)), {id: 0, name: this.$t('spacer')}]
+ return this.entries.filter(x => !selectedEntryIds.includes(x.id))
}
},
watch: {