mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-18 20:25:45 +01:00
fix: ActiveScripts Page map scripts with same arguments correctly (#748)
This commit is contained in:
parent
7b05bed0d4
commit
aaaa980d10
@ -27,7 +27,7 @@ export function ServerAccordionContent(props: IProps): React.ReactElement {
|
||||
<>
|
||||
<List dense disablePadding>
|
||||
{props.workerScripts.slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage).map((ws) => (
|
||||
<WorkerScriptAccordion key={`${ws.name}_${ws.args}`} workerScript={ws} />
|
||||
<WorkerScriptAccordion key={`${ws.pid}`} workerScript={ws} />
|
||||
))}
|
||||
</List>
|
||||
<TablePagination
|
||||
|
Loading…
Reference in New Issue
Block a user