mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #6754 from overleaf/ds-subscription-address-length
Updated maxlength of subscription address field GitOrigin-RevId: b08717a4e0e052e1c2fa92308767dfea56d8ea4d
This commit is contained in:
parent
e9fe9f5397
commit
726a47421e
1 changed files with 3 additions and 3 deletions
|
@ -180,7 +180,7 @@ block content
|
||||||
label(for="address-line-1") #{translate('address_line_1')}
|
label(for="address-line-1") #{translate('address_line_1')}
|
||||||
input#address-line-1.form-control(
|
input#address-line-1.form-control(
|
||||||
type="text"
|
type="text"
|
||||||
maxlength="255"
|
maxlength="50"
|
||||||
data-recurly="address1"
|
data-recurly="address1"
|
||||||
name="address1"
|
name="address1"
|
||||||
ng-model="data.address1"
|
ng-model="data.address1"
|
||||||
|
@ -194,7 +194,7 @@ block content
|
||||||
label(for="address-line-2") #{translate('address_line_2')}
|
label(for="address-line-2") #{translate('address_line_2')}
|
||||||
input#address-line-2.form-control(
|
input#address-line-2.form-control(
|
||||||
type="text"
|
type="text"
|
||||||
maxlength="255"
|
maxlength="50"
|
||||||
data-recurly="address2"
|
data-recurly="address2"
|
||||||
name="address2"
|
name="address2"
|
||||||
ng-model="data.address2"
|
ng-model="data.address2"
|
||||||
|
@ -206,7 +206,7 @@ block content
|
||||||
label(for="postal-code") #{translate('postal_code')}
|
label(for="postal-code") #{translate('postal_code')}
|
||||||
input#postal-code.form-control(
|
input#postal-code.form-control(
|
||||||
type="text"
|
type="text"
|
||||||
maxlength="255"
|
maxlength="20"
|
||||||
data-recurly="postal_code"
|
data-recurly="postal_code"
|
||||||
name="postalCode"
|
name="postalCode"
|
||||||
ng-model="data.postal_code"
|
ng-model="data.postal_code"
|
||||||
|
|
Loading…
Reference in a new issue