forked from github/plane
fix: sidebar and shortcut modal (#493)
* fix: shortcut modal cmd and ctrl fix * fix: sidebar collapse state ordering
This commit is contained in:
parent
031f6443a0
commit
f615f8ac0c
@ -52,6 +52,7 @@ export const ShortcutsModal: React.FC<Props> = ({ isOpen, setIsOpen }) => {
|
|||||||
? true
|
? true
|
||||||
: false
|
: false
|
||||||
);
|
);
|
||||||
|
const { platform } = (window.navigator as any).userAgentData;
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!isOpen) setQuery("");
|
if (!isOpen) setQuery("");
|
||||||
@ -126,12 +127,18 @@ export const ShortcutsModal: React.FC<Props> = ({ isOpen, setIsOpen }) => {
|
|||||||
{shortcut.keys.split(",").map((key, index) => (
|
{shortcut.keys.split(",").map((key, index) => (
|
||||||
<span key={index} className="flex items-center gap-1">
|
<span key={index} className="flex items-center gap-1">
|
||||||
{key === "Ctrl" ? (
|
{key === "Ctrl" ? (
|
||||||
|
platform === "Windows" ? (
|
||||||
|
<kbd className="rounded-sm border border-gray-200 bg-gray-100 px-2 py-1 text-sm font-medium text-gray-800">
|
||||||
|
{key}
|
||||||
|
</kbd>
|
||||||
|
) : (
|
||||||
<span className="flex h-full items-center rounded-sm border border-gray-200 bg-gray-100 p-2">
|
<span className="flex h-full items-center rounded-sm border border-gray-200 bg-gray-100 p-2">
|
||||||
<MacCommandIcon />
|
<MacCommandIcon />
|
||||||
</span>
|
</span>
|
||||||
|
)
|
||||||
) : (
|
) : (
|
||||||
<kbd className="rounded-sm border border-gray-200 bg-gray-100 px-2 py-1 text-sm font-medium text-gray-800">
|
<kbd className="rounded-sm border border-gray-200 bg-gray-100 px-2 py-1 text-sm font-medium text-gray-800">
|
||||||
{key === "Ctrl" ? <MacCommandIcon /> : key}
|
{key}
|
||||||
</kbd>
|
</kbd>
|
||||||
)}
|
)}
|
||||||
</span>
|
</span>
|
||||||
@ -165,12 +172,18 @@ export const ShortcutsModal: React.FC<Props> = ({ isOpen, setIsOpen }) => {
|
|||||||
{keys.split(",").map((key, index) => (
|
{keys.split(",").map((key, index) => (
|
||||||
<span key={index} className="flex items-center gap-1">
|
<span key={index} className="flex items-center gap-1">
|
||||||
{key === "Ctrl" ? (
|
{key === "Ctrl" ? (
|
||||||
|
platform === "Windows" ? (
|
||||||
|
<kbd className="rounded-sm border border-gray-200 bg-gray-100 px-2 py-1 text-sm font-medium text-gray-800">
|
||||||
|
{key}
|
||||||
|
</kbd>
|
||||||
|
) : (
|
||||||
<span className="flex h-full items-center rounded-sm border border-gray-200 bg-gray-100 p-2">
|
<span className="flex h-full items-center rounded-sm border border-gray-200 bg-gray-100 p-2">
|
||||||
<MacCommandIcon />
|
<MacCommandIcon />
|
||||||
</span>
|
</span>
|
||||||
|
)
|
||||||
) : (
|
) : (
|
||||||
<kbd className="rounded-sm border border-gray-200 bg-gray-100 px-2 py-1 text-sm font-medium text-gray-800">
|
<kbd className="rounded-sm border border-gray-200 bg-gray-100 px-2 py-1 text-sm font-medium text-gray-800">
|
||||||
{key === "Ctrl" ? <MacCommandIcon /> : key}
|
{key}
|
||||||
</kbd>
|
</kbd>
|
||||||
)}
|
)}
|
||||||
</span>
|
</span>
|
||||||
|
@ -57,7 +57,7 @@ export const WorkspaceHelpSection: FC<WorkspaceHelpSectionProps> = (props) => {
|
|||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={`flex w-full items-center justify-between self-baseline border-t bg-white px-6 py-2 ${
|
className={`flex w-full items-center justify-between self-baseline border-t bg-white px-6 py-2 ${
|
||||||
sidebarCollapse ? "flex-col-reverse" : ""
|
sidebarCollapse ? "flex-col" : ""
|
||||||
}`}
|
}`}
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
|
Loading…
Reference in New Issue
Block a user