fix: faltaba this delante de formateDate
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
19fcf5d536
commit
1ef454681c
|
@ -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: {
|
||||
|
|
Loading…
Reference in New Issue