1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00

Doc: Allow setting period from parameter

This commit is contained in:
Laurent Cozic 2023-01-23 17:49:02 +00:00
parent 56f06fae3c
commit 6f3ad4b3b0

View File

@ -130,7 +130,11 @@
});
setupBetaHandling(urlQuery);
applyPeriod('yearly');
if (urlQuery.get('period') === 'monthly') {
// Nothing - this is the default
} else {
applyPeriod('yearly');
}
});
</script>
</div>