diff --git a/app/components/Pp/FormInput.vue b/app/components/Pp/FormInput.vue index 43557d3..cd1ec71 100755 --- a/app/components/Pp/FormInput.vue +++ b/app/components/Pp/FormInput.vue @@ -11,7 +11,6 @@ :required="required" placeholder=" " @blur="emit('blur')" - :inputmode="mode" /> @@ -29,7 +28,6 @@ type Props = { message ?: string label : string id : string - mode ?: 'text' | 'email' | 'search' | 'tel' | 'url' | 'none' | 'numeric' | 'decimal' } const { @@ -37,7 +35,6 @@ const { required = false, step = 0.01, min = 1, - mode = 'text', } = defineProps() const emit = defineEmits(['blur']) diff --git a/app/components/Pp/PriceCardDialog.vue b/app/components/Pp/PriceCardDialog.vue index dd19cc1..00dd42f 100644 --- a/app/components/Pp/PriceCardDialog.vue +++ b/app/components/Pp/PriceCardDialog.vue @@ -25,7 +25,6 @@ v-model="currentCard.price" id="card_price" label="Preis" - mode="decimal" :class="{'error': !validFields.price }" :message="!validFields.price ? 'Muss eine Zahl sein.' : ''" /> @@ -35,7 +34,6 @@ v-model="currentCard.roles" id="card_roles" label="Rollen" - mode="decimal" :class="{'error': !validFields.roles }" :message="!validFields.roles ? 'Muss eine Ganzzahl sein.' : ''" /> @@ -43,7 +41,6 @@ v-model="currentCard.sheets" id="card_sheets" label="Blätter" - mode="decimal" :class="{'error': !validFields.sheets }" :message="!validFields.sheets ? 'Muss eine Ganzzahl sein.' : ''" /> @@ -51,7 +48,6 @@ v-model="currentCard.layers" id="card_layers" label="Lagen" - mode="decimal" :class="{'error': !validFields.layers }" :message="!validFields.layers ? 'Muss eine Ganzzahl sein.' : ''" />