Skip to content

Commit a65d55d

Browse files
authored
Merge pull request #696 from dxc-technology/fix-length
[Patch] Fixed length examples
2 parents 6a4b290 + bcfd1ec commit a65d55d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

projects/dxc-ngx-cdk-site/src/app/pages/theme-builder/previews/text-input-preview/text-input-preview.component.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
[suggestions]="options"
1515
pattern="[a-zA-Z]+"
1616
[error]="errorMessage"
17-
[minlength]="minLength"
18-
[maxlength]="maxlength"
17+
[minLength]="minLength"
18+
[maxLength]="maxlength"
1919
>
2020
<dxc-text-input-action>
2121
<svg
@@ -44,8 +44,8 @@
4444
(onActionClick)="click()"
4545
[suggestions]="options"
4646
[error]="errorMessage"
47-
[minlength]="minLength"
48-
[maxlength]="maxlength"
47+
[minLength]="minLength"
48+
[maxLength]="maxlength"
4949
pattern="[a-zA-Z]+"
5050
>
5151
<dxc-text-input-action>

0 commit comments

Comments
 (0)