|
@@ -1185,8 +1185,8 @@ U.MD.D.getNotice = function () {
|
|
|
// });
|
|
|
|
|
|
|
|
|
-function formatDate(date) {
|
|
|
- let date = new Date(date)
|
|
|
+function formatDate(_date) {
|
|
|
+ let date = new Date(_date)
|
|
|
const year = date.getFullYear();
|
|
|
const month = (date.getMonth() + 1).toString().padStart(2, "0");
|
|
|
const day = date.getDate().toString().padStart(2, "0");
|