Skip to content

Commit

Permalink
Fixing pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Dec 11, 2024
1 parent 069e264 commit f37fa9c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src-admin/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
LinearProgress,
Tab,
Tabs,
Tooltip
Tooltip,
} from '@mui/material';

import { SignalCellularOff as IconNotAlive } from '@mui/icons-material';
Expand All @@ -25,7 +25,7 @@ import {
type GenericAppState,
type IobTheme,
} from '@iobroker/adapter-react-v5';
import {clone, getText} from './Utils';
import { clone, getText } from './Utils';

import ConfigHandler from './components/ConfigHandler';
import BridgesTab from './Tabs/Bridges';
Expand Down Expand Up @@ -601,7 +601,9 @@ class App extends GenericApp<GenericAppProps, AppState> {
variant={this.state.progress.indeterminate ? 'indeterminate' : 'determinate'}
value={this.state.progress.value}
/>
{this.state.progress.text ? <DialogContentText>{getText(this.state.progress.text)}</DialogContentText> : null}
{this.state.progress.text ? (
<DialogContentText>{getText(this.state.progress.text)}</DialogContentText>
) : null}
</DialogContent>
</Dialog>
);
Expand Down

0 comments on commit f37fa9c

Please sign in to comment.