Skip to content
Snippets Groups Projects

Fix: Improvement from feedback

Merged Benedikt Heinrichs requested to merge Issue/2943-uiFeedback into master
Files
7
@@ -66,7 +66,8 @@ export default defineComponent({
methods: {
loadData() {
if (this.object.value !== this.entry.value) {
this.object.value = this.entry.value;
// 10 character cutoff to deal with longer invalid date formats
this.object.value = this.entry.value.substring(0, 10);
}
},
replacePlaceholder() {
Loading