#1749 Fixed
gitea/salix/dev This commit looks good Details

This commit is contained in:
Juan Ferrer 2019-10-04 13:12:53 +02:00
parent 9f2d137906
commit 9b385f4b90
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
$menu-width: 16em;
$topbar-height: 4em;
$mobile-width: 800px;
$input-font-size: 14px;
$input-font-size: 16px;
// Width

View File

@ -218,9 +218,9 @@ class Controller {
const timed = new Date(weekday.dated);
const now = new Date();
now.setHours(now.getHours(), now.getMinutes(), 0, 0);
now.setMonth(timed.getMonth());
now.setDate(timed.getDate());
now.setHours(0, 0, 0, 0);
this.newTime = now;
this.selectedWeekday = weekday;