@afeefa/vue-app 0.0.157 → 0.0.158

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- 0.0.157
1
+ 0.0.158
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.157",
3
+ "version": "0.0.158",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -67,10 +67,12 @@ export class FormFieldMixin extends Vue {
67
67
  const options = []
68
68
 
69
69
  if (!this.validator || !this.validator.getParam('filled')) {
70
- options.push({
71
- itemText: 'Keine Auswahl',
72
- itemValue: null
73
- })
70
+ if (!this.$attrs.hasOwnProperty('multiple')) { // don't offer 'keine auswahl' on multiselects
71
+ options.push({
72
+ itemText: 'Keine Auswahl',
73
+ itemValue: null
74
+ })
75
+ }
74
76
  }
75
77
 
76
78
  return [