mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-06-30 14:21:05 +02:00
fix textarea min and max character length
This commit is contained in:
@ -55,11 +55,11 @@ export const Control_textarea = function({
|
||||
};
|
||||
|
||||
if (min) {
|
||||
this.textarea.min = min;
|
||||
this.textarea.minLength = min;
|
||||
};
|
||||
|
||||
if (max) {
|
||||
this.textarea.max = max;
|
||||
this.textarea.maxLength = max;
|
||||
};
|
||||
|
||||
if (placeholder) {
|
||||
|
Reference in New Issue
Block a user