Browse Source

remove unused agentMode param

Signed-off-by: Robbie Lankford <robert.lankford@grafana.com>
pull/9941/head
Robbie Lankford 3 years ago
parent
commit
5fb63c1071
No known key found for this signature in database
GPG Key ID: 54F7F51936239E12
  1. 4
      web/ui/react-app/src/pages/status/Status.tsx

4
web/ui/react-app/src/pages/status/Status.tsx

@ -83,7 +83,7 @@ const StatusWithStatusIndicator = withStatusIndicator(StatusContent);
StatusContent.displayName = 'Status';
const StatusResult: FC<{ fetchPath: string; title: string; agentMode: boolean }> = ({ fetchPath, title, agentMode }) => {
const StatusResult: FC<{ fetchPath: string; title: string }> = ({ fetchPath, title }) => {
const { response, isLoading, error } = useFetch(fetchPath);
return (
<StatusWithStatusIndicator
@ -111,7 +111,7 @@ const Status: FC<{ agentMode: boolean }> = ({ agentMode }) => {
if (agentMode && title === 'Alertmanagers') {
return null;
}
return <StatusResult fetchPath={fetchPath} title={title} agentMode={agentMode} />;
return <StatusResult fetchPath={fetchPath} title={title} />;
})}
</>
);

Loading…
Cancel
Save