mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-11-26 19:13:25 +00:00
Compare commits
3 Commits
fix-error-
...
show-temp-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1b4852d5b4 | ||
|
|
4bfe60b75c | ||
|
|
6a44d10c56 |
@@ -20,7 +20,7 @@ const renderLinkedSystemItem = (option: { value: string }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex gap-2 items-center">
|
<div className="flex gap-2 items-center">
|
||||||
<SystemView systemId={value} className={classes.SystemView} />
|
<SystemView systemId={value} className={classes.SystemView} showCustomName={true} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
@@ -37,7 +37,7 @@ const renderLinkedSystemValue = (option: { value: string }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex gap-2 items-center">
|
<div className="flex gap-2 items-center">
|
||||||
<SystemView systemId={option.value} className={classes.SystemView} />
|
<SystemView systemId={option.value} className={classes.SystemView} showCustomName={true} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -42,5 +42,5 @@ export const SystemView = ({ systemId, systemInfo: customSystemInfo, showCustomN
|
|||||||
return <SystemViewStandalone {...rest} {...systemInfo} />;
|
return <SystemViewStandalone {...rest} {...systemInfo} />;
|
||||||
}
|
}
|
||||||
|
|
||||||
return <SystemViewStandalone customName={mapSystemInfo.name ?? undefined} {...rest} {...systemInfo} />;
|
return <SystemViewStandalone customName={mapSystemInfo.temporary_name ?? mapSystemInfo.name ?? undefined} {...rest} {...systemInfo} />;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user