minor fixes (missing commas, spaces, translations)

This commit is contained in:
Karel Krýda
2022-01-23 20:33:39 +01:00
parent 0d3414c6d6
commit 5fda1f0f59
7 changed files with 29 additions and 14 deletions

View File

@@ -17,7 +17,7 @@ class Maintenance extends BeanModel {
title: this.title,
description: this.description,
start_date: this.start_date,
end_date: this.end_date
end_date: this.end_date,
};
}
@@ -30,7 +30,7 @@ class Maintenance extends BeanModel {
title: this.title,
description: this.description,
start_date: this.start_date,
end_date: this.end_date
end_date: this.end_date,
};
}
}