tweaks to how the gang ui is loaded, making it more like stock market

This commit is contained in:
Olivier Gagnon
2021-06-17 18:29:43 -04:00
parent 94ea0d253c
commit febf0835c2
5 changed files with 39 additions and 39 deletions
+1 -2
View File
@@ -40,8 +40,7 @@ export function TaskSelector(props: IProps): React.ReactElement {
className="dropdown"
value={currentTask}>
<option key={0} value={"---"}>---</option>
{tasks.map((task: string, i: number) =>
<option key={i+1} value={task}>{task}</option>)}
{tasks.map((task: string, i: number) => <option key={i+1} value={task}>{task}</option>)}
</select>
<div>{StatsTable(data, null)}</div>
</>);