Tax rule editor: Fix label for "text on invoice"

This commit is contained in:
Raphael Michel
2023-03-20 17:19:32 +01:00
parent df25a1cebf
commit de7314edcc

View File

@@ -1379,7 +1379,10 @@ class TaxRuleLineForm(I18nForm):
invoice_text = I18nFormField(
label=_('Text on invoice'),
required=False,
widget=I18nTextInput
widget=I18nTextInput,
widget_kwargs=dict(attrs={
'placeholder': _('Text on invoice'),
})
)