Fix bad reference in make.datetime
This commit is contained in:
parent
9d08efb4c7
commit
1c51339e4e
1 changed files with 3 additions and 3 deletions
|
@ -12,12 +12,12 @@ make.datetime = {
|
|||
}
|
||||
},
|
||||
date: function () { // eslint-disable-line no-unused-vars
|
||||
return this.datetime.object().toDateString()
|
||||
return this.object().toDateString()
|
||||
},
|
||||
time: function () { // eslint-disable-line no-unused-vars
|
||||
return this.datetime.object().toTimeString()
|
||||
return this.object().toTimeString()
|
||||
},
|
||||
iso: function () { // eslint-disable-line no-unused-vars
|
||||
return this.datetime.object().toISOString()
|
||||
return this.object().toISOString()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue