diff --git a/apps/app/components/command-palette/shortcuts-modal.tsx b/apps/app/components/command-palette/shortcuts-modal.tsx index af7f19b0acb..8f946f5ea7e 100644 --- a/apps/app/components/command-palette/shortcuts-modal.tsx +++ b/apps/app/components/command-palette/shortcuts-modal.tsx @@ -4,7 +4,7 @@ import { Dialog, Transition } from "@headlessui/react"; // icons import { XMarkIcon } from "@heroicons/react/20/solid"; import { MagnifyingGlassIcon } from "@heroicons/react/24/outline"; -import { MacCommandIcon } from "components/icons"; +import { CommandIcon } from "components/icons"; // ui import { Input } from "components/ui"; @@ -123,17 +123,23 @@ export const ShortcutsModal: React.FC = ({ isOpen, setIsOpen }) => {
-

{shortcut.description}

+

+ {shortcut.description} +

{shortcut.keys.split(",").map((key, index) => ( {key === "Ctrl" ? ( - - + + + ) : key === "Ctrl" ? ( + + + ) : ( - - {key === "Ctrl" ? : key} + + {key} )} @@ -167,12 +173,16 @@ export const ShortcutsModal: React.FC = ({ isOpen, setIsOpen }) => { {keys.split(",").map((key, index) => ( {key === "Ctrl" ? ( - - + + + ) : key === "Ctrl" ? ( + + + ) : ( - {key === "Ctrl" ? : key} + {key} )} diff --git a/apps/app/components/core/board-view/single-issue.tsx b/apps/app/components/core/board-view/single-issue.tsx index e0ad96d1f9e..8007f321644 100644 --- a/apps/app/components/core/board-view/single-issue.tsx +++ b/apps/app/components/core/board-view/single-issue.tsx @@ -391,8 +391,8 @@ export const SingleBoardIssue: React.FC = ({ {properties.link && (
-
- +
+ {issue.link_count}
@@ -401,8 +401,8 @@ export const SingleBoardIssue: React.FC = ({ {properties.attachment_count && (
-
- +
+ {issue.attachment_count}
diff --git a/apps/app/components/core/existing-issues-list-modal.tsx b/apps/app/components/core/existing-issues-list-modal.tsx index 3a906b3563c..8ef6132ae6f 100644 --- a/apps/app/components/core/existing-issues-list-modal.tsx +++ b/apps/app/components/core/existing-issues-list-modal.tsx @@ -160,7 +160,7 @@ export const ExistingIssuesListModal: React.FC = ({ Select issues to add )} -