diff options
| author | Henry Jameson <me@hjkos.com> | 2024-07-21 23:46:54 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2024-07-21 23:46:54 +0300 |
| commit | 041da0cdffd73e716a02cc232b01b56526864c63 (patch) | |
| tree | 491b65ab8ba743d1236b3fed1125c11b11d17978 | |
| parent | 72b252c80370f6e180dba043347f175641487b3d (diff) | |
fix step not working in unit input
| -rw-r--r-- | src/components/settings_modal/helpers/unit_setting.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/settings_modal/helpers/unit_setting.vue b/src/components/settings_modal/helpers/unit_setting.vue index 86798e04..e5da9012 100644 --- a/src/components/settings_modal/helpers/unit_setting.vue +++ b/src/components/settings_modal/helpers/unit_setting.vue @@ -13,7 +13,7 @@ :id="path" class="input number-input" type="number" - step="step" + :step="step" :disabled="disabled" :min="min || 0" :value="stateValue" |
