Finetuning of various features

This commit is contained in:
Pieter Vander Vennet 2021-07-27 20:41:06 +02:00
parent 1b5737a06c
commit c175202006
4 changed files with 522 additions and 526 deletions

View file

@ -137,11 +137,11 @@ export default class State {
(b) => "" + b
);
public FilterIsOpened: UIEventSource<boolean> =
public filterIsOpened: UIEventSource<boolean> =
QueryParameters.GetQueryParameter(
"filter-toggle",
"false",
"Whether or not the filter is shown"
"Whether or not the filter view is shown"
).map<boolean>(
(str) => str !== "false",
[],