mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
Added missing row wrapping Message component
This commit is contained in:
parent
b814f500de
commit
98d856700c
1 changed files with 5 additions and 1 deletions
|
@ -17,7 +17,11 @@ export function withSelectedServer<T = {}>(WrappedComponent: FC<WithSelectedServ
|
||||||
}, [ match.params.serverId ]);
|
}, [ match.params.serverId ]);
|
||||||
|
|
||||||
if (!selectedServer) {
|
if (!selectedServer) {
|
||||||
return <Message loading />;
|
return (
|
||||||
|
<div className="row">
|
||||||
|
<Message loading />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isNotFoundServer(selectedServer)) {
|
if (isNotFoundServer(selectedServer)) {
|
||||||
|
|
Loading…
Reference in a new issue