summaryrefslogtreecommitdiffstats
path: root/webapp/src
diff options
context:
space:
mode:
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: {