From 88a01426c1f393192ba00d948137f820c17b2ac3 Mon Sep 17 00:00:00 2001 From: proddy Date: Tue, 1 Oct 2024 09:56:32 +0200 Subject: [PATCH] fix referer for external images --- interface/src/app/main/Help.tsx | 183 ++++++++++++++++---------------- 1 file changed, 89 insertions(+), 94 deletions(-) diff --git a/interface/src/app/main/Help.tsx b/interface/src/app/main/Help.tsx index a592ddd02..da45a0f1b 100644 --- a/interface/src/app/main/Help.tsx +++ b/interface/src/app/main/Help.tsx @@ -76,114 +76,109 @@ const Help = () => { }); return ( - <> - - } + + } + sx={{ + borderRadius: 3, + border: '2px solid grey', + justifyContent: 'space-evenly', + alignItems: 'center' + }} + > + + {customSupportHTML ? ( +
+ ) : ( + LL.HELP_INFORMATION_5() + )} + + - - {customSupportHTML ? ( -
- ) : ( - LL.HELP_INFORMATION_5() - )} - - - + src={customSupportIMG || 'https://emsesp.org/_media/images/installer.jpeg'} + /> + - {me.admin && ( - - - - - - - - - - - + {me.admin && ( + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - )} - - - - {LL.HELP_INFORMATION_4()} - - - + + + + + + + + + + + + )} + + + {LL.HELP_INFORMATION_4()} + + - + - - ©  - - {'emsesp.org'} - - - - + + + + ©  + + {'emsesp.org'} + + + ); };