1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

[EC-1022] add hint to group name input about max chars (#4553)

This commit is contained in:
Jake Fink
2023-01-30 11:08:54 -05:00
committed by GitHub
parent 62986be1a2
commit 64e0d45caf
2 changed files with 10 additions and 0 deletions

View File

@@ -21,6 +21,7 @@
<bit-form-field> <bit-form-field>
<bit-label>{{ "name" | i18n }}</bit-label> <bit-label>{{ "name" | i18n }}</bit-label>
<input bitInput type="text" formControlName="name" /> <input bitInput type="text" formControlName="name" />
<bit-hint>{{ "characterMaximum" | i18n: 100 }}</bit-hint>
</bit-form-field> </bit-form-field>
<bit-form-field> <bit-form-field>
<bit-label>{{ "externalId" | i18n }}</bit-label> <bit-label>{{ "externalId" | i18n }}</bit-label>

View File

@@ -5293,6 +5293,15 @@
"required": { "required": {
"message": "required" "message": "required"
}, },
"characterMaximum": {
"message": "$MAX$ character maximum",
"placeholders": {
"max": {
"content": "$1",
"example": "100"
}
}
},
"idpSingleSignOnServiceUrlRequired": { "idpSingleSignOnServiceUrlRequired": {
"message": "Required if Entity ID is not a URL." "message": "Required if Entity ID is not a URL."
}, },