|
@@ -122,7 +122,7 @@ export default {
|
|
|
calculateDaysDifference(timeString) {
|
|
|
const inputDate = new Date(timeString)
|
|
|
const currentDate = new Date()
|
|
|
- const timeDiff = currentDate - inputDate
|
|
|
+ const timeDiff = inputDate - currentDate
|
|
|
const daysDiff = Math.floor(timeDiff / (1000 * 60 * 60 * 24))
|
|
|
return daysDiff
|
|
|
}
|