mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-15 03:53:51 +00:00
Added missing row wrapping Message component
This commit is contained in:
@@ -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)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user