minor fix for route and checkbox (#2506)
Signed-off-by: ishangupta-ds <ishan@chaosnative.com>
This commit is contained in:
parent
806ea45fe4
commit
168ad20bbf
|
@ -27,7 +27,7 @@ const QuickActionCard: React.FC<QuickActionCardProps> = ({
|
||||||
const userRole = useSelector((state: RootState) => state.userData.userRole);
|
const userRole = useSelector((state: RootState) => state.userData.userRole);
|
||||||
const tabs = useActions(TabActions);
|
const tabs = useActions(TabActions);
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const apiDocsUrl = `${window.location.href}api-doc`;
|
const apiDocsUrl = `${window.location.href}api-doc/index.html`;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div data-cy="quickActionCardComponent" className={classes.quickActionCard}>
|
<div data-cy="quickActionCardComponent" className={classes.quickActionCard}>
|
||||||
|
|
|
@ -270,6 +270,7 @@ const ConfigurePrometheus: React.FC<ConfigurePrometheusProps> = ({
|
||||||
control={
|
control={
|
||||||
<StyledCheckbox
|
<StyledCheckbox
|
||||||
color="primary"
|
color="primary"
|
||||||
|
disabled
|
||||||
checked={dataSourceDetails.basicAuth}
|
checked={dataSourceDetails.basicAuth}
|
||||||
onChange={handleAuthChange}
|
onChange={handleAuthChange}
|
||||||
name="basicAuth"
|
name="basicAuth"
|
||||||
|
|
Loading…
Reference in New Issue