mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
prevent annoying screen jump when rendering
This commit is contained in:
@@ -306,7 +306,7 @@ const SystemStatus = () => {
|
||||
);
|
||||
|
||||
const content = () => {
|
||||
if (!data) {
|
||||
if (!data || !LL) {
|
||||
return <FormLoader onRetry={loadData} errorMessage={error?.message} />;
|
||||
}
|
||||
|
||||
@@ -321,7 +321,7 @@ const SystemStatus = () => {
|
||||
</ListItemAvatar>
|
||||
<ListItemText
|
||||
primary={LL.EMS_ESP_VER()}
|
||||
secondary={data.emsesp_version}
|
||||
secondary={'' + data.emsesp_version}
|
||||
/>
|
||||
{me.admin && (
|
||||
<Button
|
||||
|
||||
Reference in New Issue
Block a user