Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
doom committed Sep 29, 2023
1 parent 55fbb82 commit bb7726e
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions tgui/packages/tgui/interfaces/DrawnMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,17 @@ export class DrawnMap extends Component {
width: '100%',
height: '100%',
}}>
<img
src={this.img.src}
style={{
position: 'absolute',
zIndex: 0,
}}
width={650}
height={590}
/>
{this.img && (
<img
src={this.img.src}
style={{
position: 'absolute',
zIndex: 0,
}}
width={650}
height={590}
/>
)}
{parsedSvgData && this.state.mapLoad && (
<svg
xmlns="http://www.w3.org/2000/svg"
Expand Down

0 comments on commit bb7726e

Please sign in to comment.