WIP change replication in time api calls to use composables

many things broken
will need refactor to account for independent time conductor
This commit is contained in:
David Tsay
2024-04-19 15:28:17 -07:00
parent e624821ab1
commit 00c9d2920b
8 changed files with 116 additions and 244 deletions

View File

@ -25,7 +25,6 @@
:input-bounds="bounds"
:input-time-system="timeSystem"
@focus="$event.target.select()"
@update="setBoundsFromView"
@dismiss="dismiss"
/>
<div v-else class="c-compact-tc__setting-wrapper">
@ -166,12 +165,6 @@ export default {
format: key
}).formatter;
},
setBoundsFromView(bounds) {
this.$emit('bounds-updated', {
start: bounds.start,
end: bounds.end
});
},
dismiss() {
this.$emit('dismiss-inputs-fixed');
}