Skip to content

Commit fe42fa3

Browse files
committed
Text spinner fix
1 parent 3b9ad05 commit fe42fa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/PTextField/components/PInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213
214214
public handleNumberChange(steps: number) {
215215
const numericValue = this.computedValue ? parseFloat(this.computedValue) : 0;
216-
if (isNaN(numericValue)) { return; }
216+
if (isNaN(numericValue) || this.disabled) { return; }
217217
218218
const min = this.min || -Infinity;
219219
const max = this.max || +Infinity;

0 commit comments

Comments
 (0)