Update component.jsx
This commit is contained in:
parent
9662c29374
commit
08f56b54f5
1 changed files with 1 additions and 3 deletions
|
@ -11,14 +11,12 @@ export default function Component({ service }) {
|
||||||
const { data: grabsData, error: grabsError } = useWidgetAPI(widget, "indexerstats");
|
const { data: grabsData, error: grabsError } = useWidgetAPI(widget, "indexerstats");
|
||||||
|
|
||||||
if (grabsError) {
|
if (grabsError) {
|
||||||
const finalError = indexersError ?? grabsError;
|
return <Container error={grabsError} />;
|
||||||
return <Container error={finalError} />;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!grabsData) {
|
if (!grabsData) {
|
||||||
return (
|
return (
|
||||||
<Container service={service}>
|
<Container service={service}>
|
||||||
<Block label="prowlarr.enableIndexers" />
|
|
||||||
<Block label="prowlarr.numberOfGrabs" />
|
<Block label="prowlarr.numberOfGrabs" />
|
||||||
<Block label="prowlarr.numberOfQueries" />
|
<Block label="prowlarr.numberOfQueries" />
|
||||||
<Block label="prowlarr.numberOfFailGrabs" />
|
<Block label="prowlarr.numberOfFailGrabs" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue