Sign in to add your comment
diff --git a/space/components/issues/peek-overview/issue-properties.tsx b/space/components/issues/peek-overview/issue-properties.tsx
index a6dcedf08..fc4c8dc37 100644
--- a/space/components/issues/peek-overview/issue-properties.tsx
+++ b/space/components/issues/peek-overview/issue-properties.tsx
@@ -42,7 +42,7 @@ export const PeekOverviewIssueProperties: React.FC = ({ issueDetails, mod
};
return (
-
+
{mode === "full" && (
@@ -89,7 +89,7 @@ export const PeekOverviewIssueProperties: React.FC = ({ issueDetails, mod
? "border-yellow-500/20 bg-yellow-500/20 text-yellow-500"
: priority?.key === "low"
? "border-green-500/20 bg-green-500/20 text-green-500"
- : "border-custom-border-200 bg-custom-background-80"
+ : "border-neutral-border-medium bg-custom-background-80"
}`}
>
{priority && (
@@ -108,7 +108,7 @@ export const PeekOverviewIssueProperties: React.FC = ({ issueDetails, mod
{issueDetails.target_date ? (
-
+
{dueDateIcon.iconName}
diff --git a/space/components/issues/peek-overview/issue-vote-reactions.tsx b/space/components/issues/peek-overview/issue-vote-reactions.tsx
index 40ad145d0..2d35d6a71 100644
--- a/space/components/issues/peek-overview/issue-vote-reactions.tsx
+++ b/space/components/issues/peek-overview/issue-vote-reactions.tsx
@@ -83,7 +83,7 @@ export const IssueVotes: React.FC = observer(() => {
});
}}
className={`flex items-center justify-center gap-x-1 overflow-hidden rounded border px-2 focus:outline-none ${
- isUpVotedByUser ? "border-custom-primary-200 text-custom-primary-200" : "border-custom-border-300"
+ isUpVotedByUser ? "border-custom-primary-200 text-custom-primary-200" : "border-neutral-border-medium"
}`}
>
arrow_upward_alt
@@ -118,7 +118,7 @@ export const IssueVotes: React.FC = observer(() => {
});
}}
className={`flex items-center justify-center gap-x-1 overflow-hidden rounded border px-2 focus:outline-none ${
- isDownVotedByUser ? "border-red-600 text-red-600" : "border-custom-border-300"
+ isDownVotedByUser ? "border-red-600 text-red-600" : "border-neutral-border-medium"
}`}
>
arrow_downward_alt
diff --git a/space/components/issues/peek-overview/side-peek-view.tsx b/space/components/issues/peek-overview/side-peek-view.tsx
index 0ec82a8ef..c79e086b4 100644
--- a/space/components/issues/peek-overview/side-peek-view.tsx
+++ b/space/components/issues/peek-overview/side-peek-view.tsx
@@ -34,7 +34,7 @@ export const SidePeekView: React.FC
= observer((props) => {
{/* divider */}
-
+
{/* issue activity/comments */}
diff --git a/space/components/ui/dropdown.tsx b/space/components/ui/dropdown.tsx
index 09d27da42..ee4d38d04 100644
--- a/space/components/ui/dropdown.tsx
+++ b/space/components/ui/dropdown.tsx
@@ -52,7 +52,7 @@ const DropdownList: React.FC
= (props) => {
>
{items.map((item, index) => (
@@ -109,7 +109,7 @@ const Dropdown: React.FC
= (props) => {
{({ open }) => (
<>
@@ -125,7 +125,7 @@ const Dropdown: React.FC = (props) => {
leaveFrom="opacity-100 translate-y-0"
leaveTo="opacity-0 translate-y-1"
>
-
+
{items.map((item, index) => (
diff --git a/space/components/ui/reaction-selector.tsx b/space/components/ui/reaction-selector.tsx
index ae18d4883..730fcd15a 100644
--- a/space/components/ui/reaction-selector.tsx
+++ b/space/components/ui/reaction-selector.tsx
@@ -52,7 +52,7 @@ export const ReactionSelector: React.FC
= (props) => {
position === "top" ? "-top-12" : "-bottom-12"
}`}
>
-
+
{reactionEmojis.map((emoji) => (
-
+
{!true ? (
diff --git a/space/constants/data.ts b/space/constants/data.ts
index bb9030696..7bdee3743 100644
--- a/space/constants/data.ts
+++ b/space/constants/data.ts
@@ -33,25 +33,25 @@ export const issuePriorityFilters: IIssuePriorityFilters[] = [
{
key: "high",
title: "High",
- className: "text-orange-500 border-custom-border-300",
+ className: "text-orange-500 border-neutral-border-medium",
icon: "signal_cellular_alt",
},
{
key: "medium",
title: "Medium",
- className: "text-yellow-500 border-custom-border-300",
+ className: "text-yellow-500 border-neutral-border-medium",
icon: "signal_cellular_alt_2_bar",
},
{
key: "low",
title: "Low",
- className: "text-green-500 border-custom-border-300",
+ className: "text-green-500 border-neutral-border-medium",
icon: "signal_cellular_alt_1_bar",
},
{
key: "none",
title: "None",
- className: "text-gray-500 border-custom-border-300",
+ className: "text-gray-500 border-neutral-border-medium",
icon: "block",
},
];
diff --git a/space/layouts/project-layout.tsx b/space/layouts/project-layout.tsx
index 3ae079982..05aa94c1f 100644
--- a/space/layouts/project-layout.tsx
+++ b/space/layouts/project-layout.tsx
@@ -8,14 +8,14 @@ import IssueNavbar from "components/issues/navbar";
const ProjectLayout = ({ children }: { children: React.ReactNode }) => (
-
+
-
+
Let{"'"}s get a new password
diff --git a/space/pages/onboarding/index.tsx b/space/pages/onboarding/index.tsx
index 423eec2de..c2bdcf121 100644
--- a/space/pages/onboarding/index.tsx
+++ b/space/pages/onboarding/index.tsx
@@ -24,7 +24,7 @@ const OnBoardingPage = () => {
-
+
diff --git a/web/components/analytics/custom-analytics/graph/custom-tooltip.tsx b/web/components/analytics/custom-analytics/graph/custom-tooltip.tsx
index ec7c40195..52cccd701 100644
--- a/web/components/analytics/custom-analytics/graph/custom-tooltip.tsx
+++ b/web/components/analytics/custom-analytics/graph/custom-tooltip.tsx
@@ -46,7 +46,7 @@ export const CustomTooltip: React.FC
= ({ datum, analytics, params }) =>
}
return (
-
+
= observer((props) => {
diff --git a/web/components/analytics/custom-analytics/table.tsx b/web/components/analytics/custom-analytics/table.tsx
index c09f26d76..053b3b32e 100644
--- a/web/components/analytics/custom-analytics/table.tsx
+++ b/web/components/analytics/custom-analytics/table.tsx
@@ -23,9 +23,9 @@ export const AnalyticsTable: React.FC
= ({ analytics, barGraphData, param
-
+
-
+
{ANALYTICS_X_AXIS_VALUES.find((v) => v.value === params.x_axis)?.label}
|
@@ -60,9 +60,12 @@ export const AnalyticsTable: React.FC = ({ analytics, barGraphData, param
)}
-
+
{barGraphData.data.map((item, index) => (
-
+
= observer((props
return (
-
+
{ANALYTICS_TABS.map((tab) => (
- `rounded-3xl border border-custom-border-200 px-4 py-2 text-xs hover:bg-custom-background-80 ${
+ `rounded-3xl border border-neutral-border-medium px-4 py-2 text-xs hover:bg-custom-background-80 ${
selected ? "bg-custom-background-80" : ""
}`
}
diff --git a/web/components/analytics/project-modal/modal.tsx b/web/components/analytics/project-modal/modal.tsx
index a4b82c4b6..b1134d598 100644
--- a/web/components/analytics/project-modal/modal.tsx
+++ b/web/components/analytics/project-modal/modal.tsx
@@ -43,7 +43,7 @@ export const ProjectAnalyticsModal: React.FC = observer((props) => {
}`}
>
diff --git a/web/components/analytics/scope-and-demand/demand.tsx b/web/components/analytics/scope-and-demand/demand.tsx
index e66ffeabf..ca6d21c21 100644
--- a/web/components/analytics/scope-and-demand/demand.tsx
+++ b/web/components/analytics/scope-and-demand/demand.tsx
@@ -10,7 +10,7 @@ type Props = {
};
export const AnalyticsDemand: React.FC = ({ defaultAnalytics }) => (
-
+
DEMAND
Total open tasks
@@ -50,7 +50,7 @@ export const AnalyticsDemand: React.FC = ({ defaultAnalytics }) => (
);
})}
-
+
Estimate Demand:
diff --git a/web/components/analytics/scope-and-demand/leaderboard.tsx b/web/components/analytics/scope-and-demand/leaderboard.tsx
index 9cd38dde4..c481ff6f0 100644
--- a/web/components/analytics/scope-and-demand/leaderboard.tsx
+++ b/web/components/analytics/scope-and-demand/leaderboard.tsx
@@ -18,7 +18,7 @@ type Props = {
};
export const AnalyticsLeaderBoard: React.FC = ({ users, title, emptyStateMessage, workspaceSlug }) => (
-
+
{title}
{users.length > 0 ? (
diff --git a/web/components/analytics/scope-and-demand/scope.tsx b/web/components/analytics/scope-and-demand/scope.tsx
index ea1a51937..7bac4dbdb 100644
--- a/web/components/analytics/scope-and-demand/scope.tsx
+++ b/web/components/analytics/scope-and-demand/scope.tsx
@@ -10,9 +10,9 @@ type Props = {
};
export const AnalyticsScope: React.FC = ({ defaultAnalytics }) => (
-
+
SCOPE
-
+
Pending issues
{defaultAnalytics.pending_issue_user && defaultAnalytics.pending_issue_user.length > 0 ? (
@@ -29,7 +29,7 @@ export const AnalyticsScope: React.FC = ({ defaultAnalytics }) => (
);
return (
-
+
{assignee ? assignee.assignees__display_name : "No assignee"}:{" "}
diff --git a/web/components/analytics/scope-and-demand/year-wise-issues.tsx b/web/components/analytics/scope-and-demand/year-wise-issues.tsx
index 2a62c99d4..f7a08ea61 100644
--- a/web/components/analytics/scope-and-demand/year-wise-issues.tsx
+++ b/web/components/analytics/scope-and-demand/year-wise-issues.tsx
@@ -12,7 +12,7 @@ type Props = {
};
export const AnalyticsYearWiseIssues: React.FC = ({ defaultAnalytics }) => (
-
+
Issues closed in a year
{defaultAnalytics.issue_completed_month_wise.length > 0 ? (
= ({ defaultAnalytics }) =
margin={{ top: 20 }}
enableSlices="x"
sliceTooltip={(datum) => (
-
+
{datum.slice.points[0].data.yFormatted}
issues closed in
{datum.slice.points[0].data.xFormatted}
diff --git a/web/components/api-token/delete-token-modal.tsx b/web/components/api-token/delete-token-modal.tsx
index 993289c10..0c37940b9 100644
--- a/web/components/api-token/delete-token-modal.tsx
+++ b/web/components/api-token/delete-token-modal.tsx
@@ -94,7 +94,7 @@ export const DeleteApiTokenModal: FC = (props) => {
leaveFrom="opacity-100 translate-y-0 sm:scale-100"
leaveTo="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
>
-
+
diff --git a/web/components/api-token/empty-state.tsx b/web/components/api-token/empty-state.tsx
index 519437333..74b7c306a 100644
--- a/web/components/api-token/empty-state.tsx
+++ b/web/components/api-token/empty-state.tsx
@@ -14,7 +14,7 @@ export const ApiTokenEmptyState: React.FC = (props) => {
return (
diff --git a/web/components/api-token/modal/form.tsx b/web/components/api-token/modal/form.tsx
index ae7717b39..0c568b33b 100644
--- a/web/components/api-token/modal/form.tsx
+++ b/web/components/api-token/modal/form.tsx
@@ -167,7 +167,7 @@ export const CreateApiTokenForm: React.FC = (props) => {
@@ -200,7 +200,7 @@ export const CreateApiTokenForm: React.FC = (props) => {
minDate={tomorrow}
customInput={
diff --git a/web/components/api-token/modal/generated-token-details.tsx b/web/components/api-token/modal/generated-token-details.tsx
index f28ea3481..1e5548d93 100644
--- a/web/components/api-token/modal/generated-token-details.tsx
+++ b/web/components/api-token/modal/generated-token-details.tsx
@@ -41,7 +41,7 @@ export const GeneratedTokenDetails: React.FC = (props) => {
|