Browse Source
Merge pull request #562 from danditomaso/fix/missing-import
fix: added missing imports
pull/563/head
Dan Ditomaso
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
5 deletions
-
src/components/UI/Sidebar/sidebarButton.tsx
-
src/core/subscriptions.ts
|
|
|
@ -6,7 +6,7 @@ export interface SidebarButtonProps { |
|
|
|
count?: number; |
|
|
|
active?: boolean; |
|
|
|
Icon?: LucideIcon; |
|
|
|
element?; |
|
|
|
children: React.ReactNode; |
|
|
|
onClick?: () => void; |
|
|
|
disabled?: boolean; |
|
|
|
} |
|
|
|
@ -16,7 +16,7 @@ export const SidebarButton = ({ |
|
|
|
active, |
|
|
|
Icon, |
|
|
|
count, |
|
|
|
element, |
|
|
|
children, |
|
|
|
onClick, |
|
|
|
disabled = false, |
|
|
|
}: SidebarButtonProps) => ( |
|
|
|
@ -28,8 +28,8 @@ export const SidebarButton = ({ |
|
|
|
disabled={disabled} |
|
|
|
> |
|
|
|
{Icon && <Icon size={16} />} |
|
|
|
{element && element} |
|
|
|
{children && children} |
|
|
|
<span className="flex flex-1 justify-start shrink-0">{label}</span> |
|
|
|
{count > 0 && !active && <div className="justify-end text-white rounded-[20%] px-[2%] bg-[rgb(195,0,0)]">{count}</div>} |
|
|
|
{count && count > 0 && !active && <div className="justify-end text-white rounded-[20%] px-[2%] bg-[rgb(195,0,0)]">{count}</div>} |
|
|
|
</Button> |
|
|
|
); |
|
|
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
import type { Device } from "@core/stores/deviceStore.ts"; |
|
|
|
import { MeshDevice, Protobuf } from "@meshtastic/core"; |
|
|
|
import type { MessageStore } from "@core/stores/messageStore.ts"; |
|
|
|
import { MessageType, type MessageStore } from "@core/stores/messageStore.ts"; |
|
|
|
import PacketToMessageDTO from "@core/dto/PacketToMessageDTO.ts"; |
|
|
|
|
|
|
|
export const subscribeAll = ( |
|
|
|
|