QA Observation Bugfix/FOUR-14061: Saved search custom date columns showing wrong date/time by CarliPinell · Pull Request #6187 · ProcessMaker/processmaker
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we can try replacing this line when the filter table formats the data on filtertable.vue
watch: {
data() {
this.headers.forEach((column) => {
if (column.format) {
if (column.format === "datetime" || column.format === "date") {
if (this.data?.data?.forEach) {
this.data.data.forEach((element) => {
//element[column.field] = this.formatDate(element[column.field], column.format);
set(element, column.field, this.formatDate(this.getNestedPropertyValue(element, column.field), column.format));
});
}
}
}
});
},
},