Commit 274f3e23 authored by Clement Ho's avatar Clement Ho

Add comments to resolve todos

parent 262ad96a
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
let conditionIndex = 0; let conditionIndex = 0;
const validCondition = gl.FilteredSearchTokenKeys.get() const validCondition = gl.FilteredSearchTokenKeys.get()
.filter(v => v.conditions && v.conditions.filter((c, index) => { .filter(v => v.conditions && v.conditions.filter((c, index) => {
// TODO: Add comment here // Return TokenKeys that have conditions that much the URL
if (c.url === p) { if (c.url === p) {
conditionIndex = index; conditionIndex = index;
} }
...@@ -155,8 +155,8 @@ ...@@ -155,8 +155,8 @@
const { tokens, searchToken } = this.tokenizer.processTokens(this.filteredSearchInput.value); const { tokens, searchToken } = this.tokenizer.processTokens(this.filteredSearchInput.value);
if (stateIndex !== -1) { if (stateIndex !== -1) {
// TODO: Add comment here // Get currentState from url params if available
const remaining = currentPath.slice(stateIndex + 6); const remaining = currentPath.slice(stateIndex + 'state='.length);
const separatorIndex = remaining.indexOf('&'); const separatorIndex = remaining.indexOf('&');
currentState = separatorIndex === -1 ? remaining : remaining.slice(0, separatorIndex); currentState = separatorIndex === -1 ? remaining : remaining.slice(0, separatorIndex);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment