diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index 311b72b..33dd890 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -398,7 +398,17 @@ export default defineConfig({ }, { text: "Work Item Types", - link: "/core-concepts/issues/issue-types", + collapsed: true, + items: [ + { + text: "Project-level", + link: "/core-concepts/issues/issue-types", + }, + { + text: "Workspace-level", + link: "/core-concepts/workspaces/work-item-types", + }, + ], }, { text: "Workflow States", link: "/core-concepts/issues/states" }, { text: "Work Item Labels", link: "/core-concepts/issues/labels" }, diff --git a/docs/core-concepts/issues/issue-types.md b/docs/core-concepts/issues/issue-types.md index b5ebb0c..928c560 100644 --- a/docs/core-concepts/issues/issue-types.md +++ b/docs/core-concepts/issues/issue-types.md @@ -5,12 +5,14 @@ description: Create specialized work item types in Plane with custom properties, # Add and configure your work item types -Work item Types unlock a whole new way of adding, editing, and moving work forward in Plane. The default work item type called `Issue` is great for starting with Plane, but as you advance in your project management journey, you find the need for names and properties unique to the type of work you are doing. +Work item Types unlock a whole new way of adding, editing, and moving work forward in Plane. The default work item type called `Task` is great for starting with Plane, but as you advance in your project management journey, you find the need for names and properties unique to the type of work you are doing. For example, your Marketing team may need a work item type called `Content` with the properties, `Channel`, `SEO done?`, and `Reviewer` — properties that aren't available on the default Work items. Your Engineering team, on the other hand, may want a work item type called `Bugs` with the properties `Version` and `Environment` to have more upfront info per bug reported. Work item Types make these and infinite other use cases possible. +On the Enterprise Grid, work item types are managed at the workspace level for consistency across projects. See [Workspace Work Item Types](/core-concepts/workspaces/work-item-types). +