diff --git a/ayanova/src/components/duration-control.vue b/ayanova/src/components/duration-control.vue
index 3dd382b7..e94fdb96 100644
--- a/ayanova/src/components/duration-control.vue
+++ b/ayanova/src/components/duration-control.vue
@@ -2,16 +2,43 @@
+
+
+
24) {
- this.days = 24;
+ this.hours = 24;
} else {
- this.days = Number(value);
+ this.hours = Number(value);
}
+ this.handleInput();
//oninput="if(Number(this.value) > Number(this.max)) this.value = this.max;"
},
handleMinutesInput(value) {
@@ -102,6 +133,7 @@ export default {
} else {
this.minutes = Number(value);
}
+ this.handleInput();
},
handleSecondsInput(value) {
if (Number(value) > 60) {
@@ -109,7 +141,9 @@ export default {
} else {
this.seconds = Number(value);
}
- }
+ this.handleInput();
+ },
+ handleInput() {}
//combine these into the proper timespan string
// //combine the time and dates into a consolidated value
// let TimePortion = window.$gz.locale.utcDateStringToLocal8601TimeOnlyString(