mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-11-02 15:37:03 +00:00
Compare commits
3 Commits
v1.84.1
...
show-temp-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1b4852d5b4 | ||
|
|
4bfe60b75c | ||
|
|
6a44d10c56 |
@@ -20,7 +20,7 @@ const renderLinkedSystemItem = (option: { value: string }) => {
|
||||
|
||||
return (
|
||||
<div className="flex gap-2 items-center">
|
||||
<SystemView systemId={value} className={classes.SystemView} />
|
||||
<SystemView systemId={value} className={classes.SystemView} showCustomName={true} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
@@ -37,7 +37,7 @@ const renderLinkedSystemValue = (option: { value: string }) => {
|
||||
|
||||
return (
|
||||
<div className="flex gap-2 items-center">
|
||||
<SystemView systemId={option.value} className={classes.SystemView} />
|
||||
<SystemView systemId={option.value} className={classes.SystemView} showCustomName={true} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -42,5 +42,5 @@ export const SystemView = ({ systemId, systemInfo: customSystemInfo, showCustomN
|
||||
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