Skip to content

Commit

Permalink
Fix QA
Browse files Browse the repository at this point in the history
  • Loading branch information
markwalet committed Jul 13, 2023
1 parent 5be55c6 commit 19848f0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/widgets/proxmox/component.jsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { useTranslation } from "next-i18next";
import {FiCpu} from "react-icons/fi";
import {FaMemory} from "react-icons/fa";

import Resource from "../../components/widgets/widget/resource";

import Container from "components/services/widget/container";
import Block from "components/services/widget/block";
import useWidgetAPI from "utils/proxy/use-widget-api";
import {FiCpu} from "react-icons/fi";
import Resource from "../../components/widgets/widget/resource";
import {FaMemory} from "react-icons/fa";
import classNames from "classnames";


function calcRunning(total, current) {
return current.status === "running" ? total + 1 : total;
Expand Down

0 comments on commit 19848f0

Please sign in to comment.