mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
fix referer for external images
This commit is contained in:
@@ -76,7 +76,6 @@ const Help = () => {
|
||||
});
|
||||
|
||||
return (
|
||||
<>
|
||||
<SectionContent>
|
||||
<Stack
|
||||
padding={1}
|
||||
@@ -99,14 +98,11 @@ const Help = () => {
|
||||
</Typography>
|
||||
<Box
|
||||
component="img"
|
||||
referrerPolicy="no-referrer"
|
||||
sx={{
|
||||
maxHeight: { xs: 100, md: 250 }
|
||||
}}
|
||||
src={
|
||||
customSupportIMG
|
||||
? customSupportIMG
|
||||
: 'https://emsesp.org/_media/images/installer.jpeg'
|
||||
}
|
||||
src={customSupportIMG || 'https://emsesp.org/_media/images/installer.jpeg'}
|
||||
/>
|
||||
</Stack>
|
||||
|
||||
@@ -183,7 +179,6 @@ const Help = () => {
|
||||
</Link>
|
||||
</Typography>
|
||||
</SectionContent>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user