fix: remove debug logging from updateValue function in VnJsonValue component
gitea/salix-front/pipeline/pr-master There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-04-04 08:53:40 +02:00
parent 103835d08b
commit a84743d890
1 changed files with 0 additions and 2 deletions

View File

@ -40,9 +40,7 @@ const updateValue = () => {
break;
case 'object':
if (props.value instanceof Date) {
console.log('props.value: ', props.value);
t = toDateHourMinSec(props.value);
console.log('t: ', t);
} else {
t = props.value.toString();
}