diff --git a/src/components/DesktopCard.tsx b/src/components/DesktopCard.tsx index bcad047..8ff993b 100644 --- a/src/components/DesktopCard.tsx +++ b/src/components/DesktopCard.tsx @@ -10,6 +10,7 @@ import UnlinkIcon from "./icons/UnlinkIcon"; import clsx from "clsx"; import ChevronRightIcon from "./icons/ChevronRightIcon"; import CurrentSessionModal from "./modals/CurrentSessionModal"; +import SpinIcon from "./icons/SpinIcon"; interface IDesktopCardProps { server: IServer; @@ -52,8 +53,13 @@ export default function DesktopCard({ server }: IDesktopCardProps) {
{server.sessions?.[0]?.status === "starting" ? ( -
- загрузка... +
+ + + +
+ Начинаем сеанс +
) : server.sessions?.[0]?.status === "started" ? (
diff --git a/src/components/ProjectSelector.tsx b/src/components/ProjectSelector.tsx index 6488801..a497716 100644 --- a/src/components/ProjectSelector.tsx +++ b/src/components/ProjectSelector.tsx @@ -39,7 +39,7 @@ function ProjectSelector({ >

Проект

-

{selectedProject?.name}

+

{selectedProject?.name}

@@ -89,7 +89,7 @@ function ProjectSelector({ />
-

{project.name}

+

{project.name}

{activeProject && project.name === activeProject.name && ( diff --git a/src/components/icons/SpinIcon.tsx b/src/components/icons/SpinIcon.tsx new file mode 100644 index 0000000..f64e60b --- /dev/null +++ b/src/components/icons/SpinIcon.tsx @@ -0,0 +1,40 @@ +function SpinIcon() { + return ( + + + +
+ + + + + + + + + + ); +} + +export default SpinIcon;