Planning: keep year

This commit is contained in:
ostertun
2020-11-01 16:38:06 +01:00
parent 0fd09c22a2
commit 1fb619d4ec
7 changed files with 15 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
async function onUserClicked(id) {
var user = await dbGetData('users', id);
if (user !== null) {
location.href = LINK_PRE + 'planning_view?user=' + user.id;
location.href = LINK_PRE + 'planning_view?user=' + user.id + '&year=' + $('#select-year').val();
}
}