Skip to content

Commit

Permalink
[MODULAR] Fixes Company Imports (#1224)
Browse files Browse the repository at this point in the history
* Fixes Company Imports

* Prettier

Co-authored-by: Bloop <[email protected]>
  • Loading branch information
Steals-The-PRs and vinylspiders authored Dec 21, 2023
1 parent 286f026 commit d6396e7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tgui/packages/tgui/interfaces/CargoImportConsole.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const CargoImportConsole = (props) => {
key={item.ref}
onClick={() => setArmament(item.ref)}
>
<img
<Image
src={`data:image/jpeg;base64,${item.icon}`}
style={{
'vertical-align': 'middle',
Expand All @@ -108,15 +108,15 @@ export const CargoImportConsole = (props) => {
item.ref === weapon && (
<Stack vertical key={item.ref}>
<Stack.Item>
<Image>
src=
{`data:image/jpeg;base64,${item.icon}`}
height={'100%'} width={'100%'} style=
{{
<Image
src={`data:image/jpeg;base64,${item.icon}`}
height={'100%'}
width={'100%'}
style={{
'vertical-align': 'middle',
'horizontal-align': 'middle',
}}
</Image>
/>
</Stack.Item>
<Stack.Item>{item.description}</Stack.Item>
{!!cant_buy_restricted && !!item.restricted && (
Expand Down

0 comments on commit d6396e7

Please sign in to comment.