pull/7405/head
Cagatay Civici 2025-03-11 11:06:02 +03:00
commit 0c8c7915de
1 changed files with 1 additions and 1 deletions

View File

@ -1271,7 +1271,7 @@ export default {
}, },
formatValue(value) { formatValue(value) {
if (typeof value === 'string') { if (typeof value === 'string') {
return value; return this.dateFormat ? (isNaN(new Date(value)) ? value : this.formatDate(new Date(value), this.dateFormat)) : value;
} }
let formattedValue = ''; let formattedValue = '';