Skip to content
Snippets Groups Projects
Commit 479ec0c3 authored by Titus Netland's avatar Titus Netland
Browse files

Date fixed

parent a59f2d29
No related branches found
No related tags found
1 merge request!98Rent history
Pipeline #180501 passed
......@@ -97,7 +97,7 @@ export default {
getDateString(milliseconds) {
let today = new Date();
let date = new Date(milliseconds);
let dateString = date.getDate() + "." + date.getMonth();
let dateString = date.getDate() + "." + (date.getMonth()+1);
if (date.getFullYear() != today.getFullYear()) {
dateString += "." + date.getFullYear();
......
......@@ -4,7 +4,7 @@ module.exports = defineConfig({
transpileDependencies: true,
chainWebpack: (config) => {
config.plugin("html").tap((args) => {
args[0].title = "Borrow Community";
args[0].title = "BoCo - Borrow Community";
return args;
});
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment