mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-21 16:52:55 +02:00
tweaks to how the gang ui is loaded, making it more like stock market
This commit is contained in:
@@ -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>
|
||||
</>);
|
||||
|
||||
Reference in New Issue
Block a user