Skip to content

Commit

Permalink
chore(textfield): Add cols attribute to type textarea
Browse files Browse the repository at this point in the history
  • Loading branch information
vdegenne committed Sep 26, 2023
1 parent 98e7d16 commit 20c9447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion textfield/internal/text-field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ export abstract class TextField extends LitElement {
?readonly=${this.readOnly}
?required=${this.required}
rows=${this.rows}
cols=${this.cols}
cols=${this.cols}
.value=${live(this.value)}
@change=${this.handleChange}
@focusin=${this.handleFocusin}
Expand Down

0 comments on commit 20c9447

Please sign in to comment.