Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

De-dup #159

Open
wants to merge 1 commit into
base: preview
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions docs/core-concepts/issues/dedup.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
title: De-dup
hide_title: true
---

import Tags from '@site/src/components/Tags';

<div className="tag-wrapper">
<h1>Detect duplicate issues</h1>
<Tags
tags={[
{ name: "Business", additionalClass: "business" }
]}
/>
</div>

When similar issues clutter a workspace, they confuse team members and make it harder to track and manage project scope.

Our De-dup feature helps you catch and manage duplicate issues in Plane.

## How De-dup works

Plane flags duplicate issues both when creating a new one and when viewing an issue's details.

### Detect duplicates during issue creation

When you create a new issue, Plane scans titles and descriptions for similar content and notifies you if it finds potential duplicates.

![Duplicates during issue creation](https://media.docs.plane.so/issues/dedup-create-issue.webp#center)

You can click on the issues to check and decide if creating a new one is necessary or if updating an existing one makes more sense.

### Mark or delete duplicate issues

You can mark issues as duplicates or delete them in the issue detail view.
![Mark duplicates](https://media.docs.plane.so/issues/dedup-issue-desc.webp#center)

When you open an issue, Plane analyses and lists similar issues. You can select one or more of these issues and mark them duplicates. This will add a "Duplicate of" relation to connect them.

![Duplicate of relation](https://media.docs.plane.so/issues/dedup-relation.webp#center)

:::tip
The De-dup feature is also active when creating or viewing issues in Intake.
:::
3 changes: 2 additions & 1 deletion sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ const sidebars: SidebarsConfig = {
label: 'Advanced project management',
items: [
'core-concepts/issues/issue-types',
'core-concepts/issues/time-tracking'
'core-concepts/issues/time-tracking',
'core-concepts/issues/dedup'
],
},
{
Expand Down
15 changes: 15 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,21 @@ html[data-theme='dark'] .navbar--discord-link:before {
padding: 0 15px 0 15px;
}

.business {
color: #111111;
border-radius: 4px;
border: 1px solid #D6D7D9;
background: linear-gradient(167.44deg, #C2C8E4 0%, #BFC4DF 67.25%, #FCFCFC 98.9%);
padding: 0 15px 0 15px;
}

html[data-theme='dark'] .business {
color: #F5F5F5;
border-radius: 4px;
border: 0.92px solid #646c90;
background: linear-gradient(164.95deg, #414669 0%, rgba(56, 60, 78, 0.12) 53.4%, rgba(172, 211, 255, 0.16) 100%);
padding: 0 15px 0 15px;
}

html[data-theme='dark'] .pro {
color: #fff;
Expand Down