add the ability to configure the 'simple_view' parameter from the client,

the parameter is not required, but if set, it will overwrite the one that came from the backend
issues-916
This commit is contained in:
Yuriy Karpov
2021-05-06 11:08:15 -05:00
committed by Umputun
parent e841bc27fb
commit 4e0a4e52bd
7 changed files with 89 additions and 10 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
/** converts widnow.location.search into object */
/** converts window.location.search into object */
export default function parseQuery<T extends {}>(search: string = window.location.search): T {
const params: { [key: string]: string } = {};