This commit is contained in:
2021-08-11 20:27:37 +00:00
parent 4606920cde
commit 286e454677
9 changed files with 47 additions and 10 deletions

View File

@@ -354,7 +354,7 @@ export default {
vm.editName = null;
vm.editNotes = null;
vm.editId = null;
//due to fucking reactivity issues which never seem to resolve no matter what I'm returning a fresh list on update
//due to reactivity issues
vm.updateDisplayList(res.data);
}
} catch (error) {

View File

@@ -362,8 +362,8 @@ export default {
//item.type only exists for custom fields so they are the ones to return
//In addition if there is a keyStartWith then there are multiple custom field controls on same form so that's a different route to take
let template = this.$store.state.formCustomTemplate[this.formKey];
// debugger;
//console.log("Template is: ", template);
// // debugger;
// console.log("Template is: ", template);
if (template != undefined) {
if (this.keyStartWith != "") {

View File

@@ -27,7 +27,7 @@
$ay.t("Delete")
}}</v-btn>
<v-spacer></v-spacer>
what the fuck
<v-btn text color="primary" @click="setToday()">{{
$ay.t("DateRangeToday")
}}</v-btn>

View File

@@ -79,7 +79,7 @@
//example serialized json TimeSpans
//seems to be DD.HH:MM:SS.ms at it's most characters
//two colons always with an optional period at each end to separate days and ms
//we don't give a shit about MS and can safely ignore them
//we don't support or need MS and can safely ignore them
//so just look for a period at the top and the rest is split by colons
//maybe split by colon first then subsplit first and last elements into days and MS
//{"data":{"testTSDaysWMS":"22.10:15:22.0330000","testTSHMS":"05:16:33","testTS_DHMS":"5.10:15:33","testTS_MS":"00:15:33","testTS_S":"00:00:33","testTS_D":"22.00:00:00"}}