mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 23:08:36 +02:00
UI: Show all jobs instead of only one in Job tab (#1945)
This commit is contained in:
@@ -34,6 +34,7 @@ import { GameOptionsRoot } from "../GameOptions/ui/GameOptionsRoot";
|
||||
import { SleeveRoot } from "../PersonObjects/Sleeve/ui/SleeveRoot";
|
||||
import { HacknetRoot } from "../Hacknet/ui/HacknetRoot";
|
||||
import { GenericLocation } from "../Locations/ui/GenericLocation";
|
||||
import { JobRoot } from "../Locations/ui/JobRoot";
|
||||
import { LocationCity } from "../Locations/ui/City";
|
||||
import { ProgramsRoot } from "../Programs/ui/ProgramsRoot";
|
||||
import { ScriptEditorRoot } from "../ScriptEditor/ui/ScriptEditorRoot";
|
||||
@@ -332,8 +333,10 @@ export function GameRoot(): React.ReactElement {
|
||||
break;
|
||||
}
|
||||
case Page.Job:
|
||||
mainPage = <JobRoot />;
|
||||
break;
|
||||
case Page.Location: {
|
||||
mainPage = <GenericLocation loc={pageWithContext.location} />;
|
||||
mainPage = <GenericLocation loc={pageWithContext.location} showBackButton={true} />;
|
||||
break;
|
||||
}
|
||||
case Page.Options: {
|
||||
|
||||
Reference in New Issue
Block a user