diff --git a/src/pretix/static/pretixpresale/js/widget/widget.js b/src/pretix/static/pretixpresale/js/widget/widget.js index 232c9ecd16..526ab0f592 100644 --- a/src/pretix/static/pretixpresale/js/widget/widget.js +++ b/src/pretix/static/pretixpresale/js/widget/widget.js @@ -345,7 +345,7 @@ Vue.component('pricebox', { + ' :min="display_price_nonlocalized" :value="suggested_price_nonlocalized" :name="field_name"' + ' step="any" v-bind:aria-labelledby="aria_labelledby" v-bind:aria-describedby="price_desc_id">' + '' - + '' + + '' + '{{ taxline }}' + '' + ''), diff --git a/src/pretix/static/pretixpresale/widget/src/components/PriceBox.vue b/src/pretix/static/pretixpresale/widget/src/components/PriceBox.vue index 858c5c9910..4b0d78b017 100644 --- a/src/pretix/static/pretixpresale/widget/src/components/PriceBox.vue +++ b/src/pretix/static/pretixpresale/widget/src/components/PriceBox.vue @@ -86,7 +86,7 @@ const taxline = computed(() => { } }) -const showTaxline = computed(() => props.price.rate !== '0.00' && props.price.gross !== '0.00') +const showTaxline = computed(() => props.price.rate !== '0' && props.price.gross !== '0.00')