-
-
-
}
onChange={(e) => setSearch(e.target.value)}
@@ -111,7 +104,7 @@ const ProjectIconWithProgress: React.FC<{
size={26}
icon={
platform === 'web' ? (
-
+
) : (
)
diff --git a/frontend/app/components/Client/Projects/ProjectTags.tsx b/frontend/app/components/Client/Projects/ProjectTags.tsx
index 4d59a3ceb..92caa6485 100644
--- a/frontend/app/components/Client/Projects/ProjectTags.tsx
+++ b/frontend/app/components/Client/Projects/ProjectTags.tsx
@@ -2,7 +2,8 @@ import React, { useEffect } from 'react';
import { useStore } from '@/mstore';
import { List, Button, Typography, Space, Empty } from 'antd';
import { observer } from 'mobx-react-lite';
-import { PencilIcon, ScanSearch } from 'lucide-react';
+import { ScanSearch } from 'lucide-react';
+import {EditOutlined} from '@ant-design/icons'
import { useModal } from 'Components/ModalContext';
import TagForm from 'Components/Client/Projects/TagForm';
import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG';
@@ -46,7 +47,7 @@ function ProjectTags() {
} />
+
} />
]}
onClick={() => handleInit(item)}
>
diff --git a/frontend/app/components/Client/Projects/Projects.tsx b/frontend/app/components/Client/Projects/Projects.tsx
index 497e5cd20..06e8c64b1 100644
--- a/frontend/app/components/Client/Projects/Projects.tsx
+++ b/frontend/app/components/Client/Projects/Projects.tsx
@@ -5,7 +5,7 @@ import ProjectTabs from 'Components/Client/Projects/ProjectTabs';
import { useHistory } from 'react-router-dom';
import { useStore } from '@/mstore';
import { observer } from 'mobx-react-lite';
-import { KeyIcon, PlusIcon } from 'lucide-react';
+import {PlusOutlined, KeyOutlined} from '@ant-design/icons'
import ProjectTabContent from 'Components/Client/Projects/ProjectTabContent';
import { useModal } from 'Components/ModalContext';
import ProjectForm from 'Components/Client/Projects/ProjectForm';
@@ -37,6 +37,11 @@ function Projects() {
history.push({ search: params.toString() });
}, [pid, tab]);
+ const createProject = () => {
+ openModal(
, {
+ title: 'Add Project'
+ });
+ };
return (
Projects}
- >
+ extra={}
+ >
@@ -97,7 +103,7 @@ function ProjectKeyButton({ project }: { project: Project | null }) {
return (
- } size="small" />
+ } size="small" />
);
}
diff --git a/frontend/app/components/Client/Projects/TagForm.tsx b/frontend/app/components/Client/Projects/TagForm.tsx
index babaf3719..e5a36c236 100644
--- a/frontend/app/components/Client/Projects/TagForm.tsx
+++ b/frontend/app/components/Client/Projects/TagForm.tsx
@@ -44,7 +44,7 @@ function TagForm(props: Props) {
return (
+
@@ -62,11 +63,11 @@ function TagForm(props: Props) {
disabled={name.length === 0 || name === tag.name || loading}
loading={loading}
type="primary"
- className="float-left mr-2"
+ className="float-left mr-1"
>
Update
-