Jeremy Gallant
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with
5 additions and
5 deletions
-
packages/web/src/components/Dialog/NodeDetailsDialog/NodeDetailsDialog.tsx
-
packages/web/src/components/Dialog/RebootDialog.tsx
-
packages/web/src/components/PageComponents/Map/NodeDetail.tsx
-
packages/web/src/components/UI/Separator.tsx
-
packages/web/src/pages/Dashboard/index.tsx
|
|
|
@ -16,7 +16,7 @@ import { |
|
|
|
DialogHeader, |
|
|
|
DialogTitle, |
|
|
|
} from "@components/UI/Dialog.tsx"; |
|
|
|
import { Separator } from "@components/UI/Seperator.tsx"; |
|
|
|
import { Separator } from "@components/UI/Separator"; |
|
|
|
import { |
|
|
|
Tooltip, |
|
|
|
TooltipArrow, |
|
|
|
|
|
|
|
@ -10,7 +10,7 @@ import { |
|
|
|
} from "@components/UI/Dialog.tsx"; |
|
|
|
import { Input } from "@components/UI/Input.tsx"; |
|
|
|
import { Label } from "@components/UI/Label.tsx"; |
|
|
|
import { Separator } from "@components/UI/Seperator.tsx"; |
|
|
|
import { Separator } from "@components/UI/Separator"; |
|
|
|
import { useDevice } from "@core/stores"; |
|
|
|
import { ClockIcon, OctagonXIcon, RefreshCwIcon } from "lucide-react"; |
|
|
|
import { useState } from "react"; |
|
|
|
|
|
|
|
@ -2,7 +2,7 @@ import BatteryStatus from "@components/BatteryStatus.tsx"; |
|
|
|
import { Mono } from "@components/generic/Mono.tsx"; |
|
|
|
import { TimeAgo } from "@components/generic/TimeAgo.tsx"; |
|
|
|
import { Avatar } from "@components/UI/Avatar.tsx"; |
|
|
|
import { Separator } from "@components/UI/Seperator.tsx"; |
|
|
|
import { Separator } from "@components/UI/Separator"; |
|
|
|
import { Heading } from "@components/UI/Typography/Heading.tsx"; |
|
|
|
import { Subtle } from "@components/UI/Typography/Subtle.tsx"; |
|
|
|
import { formatQuantity } from "@core/utils/string.ts"; |
|
|
|
|
|
|
|
@ -3,7 +3,7 @@ import * as SeparatorPrimitive from "@radix-ui/react-separator"; |
|
|
|
import * as React from "react"; |
|
|
|
|
|
|
|
const Separator = React.forwardRef< |
|
|
|
React.ElementRef<typeof SeparatorPrimitive.Root>, |
|
|
|
React.ComponentRef<typeof SeparatorPrimitive.Root>, |
|
|
|
React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> |
|
|
|
>( |
|
|
|
( |
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
import LanguageSwitcher from "@components/LanguageSwitcher.tsx"; |
|
|
|
import { Button } from "@components/UI/Button.tsx"; |
|
|
|
import { Separator } from "@components/UI/Seperator.tsx"; |
|
|
|
import { Separator } from "@components/UI/Separator"; |
|
|
|
import { Heading } from "@components/UI/Typography/Heading.tsx"; |
|
|
|
import { Subtle } from "@components/UI/Typography/Subtle.tsx"; |
|
|
|
import { useAppStore, useDeviceStore, useNodeDBStore } from "@core/stores"; |
|
|
|
|