mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
cloudflared widget working locally
This commit is contained in:
@@ -3,7 +3,6 @@ import Block from "components/services/widget/block";
|
||||
import useWidgetAPI from "utils/proxy/use-widget-api";
|
||||
|
||||
export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
const { widget } = service;
|
||||
|
||||
const { data: statsData, error: statsError } = useWidgetAPI(widget, "cfd_tunnel");
|
||||
@@ -23,8 +22,8 @@ export default function Component({ service }) {
|
||||
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="cloudflared.status" value={statsData.status} />
|
||||
<Block label="cloudflared.origin_ip" value={statsData.origin_ip} />
|
||||
<Block label="cloudflared.status" value={statsData.result.status} />
|
||||
<Block label="cloudflared.origin_ip" value={statsData.result.connections.origin_ip} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user