fix: faltaba this delante de formateDate
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Vicent Llopis 2023-03-10 12:51:25 +01:00
parent 19fcf5d536
commit 1ef454681c
1 changed files with 2 additions and 2 deletions

View File

@ -38,11 +38,11 @@ module.exports = {
computed: {
landedEnd: function() {
if (!this.landedTo) return;
return formatDate(this.landedTo, '%Y-%m-%d');
return this.formatDate(this.landedTo, '%Y-%m-%d');
},
shippedStart: function() {
if (!this.shippedFrom) return;
return formatDate(this.shippedFrom, '%Y-%m-%d');
return this.formatDate(this.shippedFrom, '%Y-%m-%d');
}
},
methods: {