diff --git a/assets/images/help/issues/issue-type-edit.png b/assets/images/help/issues/issue-type-edit.png
index 2d661df0896b..04e53e2b6543 100644
Binary files a/assets/images/help/issues/issue-type-edit.png and b/assets/images/help/issues/issue-type-edit.png differ
diff --git a/content/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects.md b/content/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects.md
index 71d79e160ab8..49e2c3fda500 100644
--- a/content/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects.md
+++ b/content/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects.md
@@ -77,6 +77,16 @@ You can invert any filter, including combinations, by prefixing with a hyphen.
|-field:VALUE
| **-status:done** will not show any items with a status of "done."
|-field:VALUE,VALUE
| **-priority:1,2** will not show any items with a priority of either 1 or 2.
+## Filtering for items that have a value
+
+You can use `has:` to filter for items that have a value
+
+| Qualifier | Example
+| ---------- | -------------
+|has:assignee
| **has:assignee** will show items with an assignee.
+|has:label
| **has:label** will show items with a label.
+|has:FIELD | **has:priority** will show items with a priority field value.
+
## Filtering for items that are missing a value
You can use `no:` to filter for items that are missing a value
diff --git a/content/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization.md b/content/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization.md
index 4ac78256c421..170c67ef047b 100644
--- a/content/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization.md
+++ b/content/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization.md
@@ -12,7 +12,7 @@ permissions: 'Organization owners can modify issue types.'
{% data reusables.issues.release-stage %}
-You can use issue types to classify and manage different types of issues across your organization. You can create up to ten issue types that your organization members can apply to issues, making it easier for you and your members to find issues and plan work.
+You can use issue types to classify and manage different types of issues across your organization. You can create up to {% data variables.projects.issue_type_limit %} issue types that your organization members can apply to issues, making it easier for you and your members to find issues and plan work.
Default issue types are included in every organization, but these can edited, disabled, or deleted. The default types are task, bug, and feature.
diff --git a/content/issues/tracking-your-work-with-issues/using-issues/adding-sub-issues.md b/content/issues/tracking-your-work-with-issues/using-issues/adding-sub-issues.md
index 10a492f7703a..c9954ff3b142 100644
--- a/content/issues/tracking-your-work-with-issues/using-issues/adding-sub-issues.md
+++ b/content/issues/tracking-your-work-with-issues/using-issues/adding-sub-issues.md
@@ -24,7 +24,7 @@ You can add sub-issues to an issue to break down larger pieces of work into task
Your sub-issues can themselves contain sub-issues, allowing you to create full hierarchies of issues that visualize entire projects or pieces of work and show the relationships between your issues.
-You can add up to fifty sub-issues per parent issue and create up to eight levels of nested sub-issues.
+You can add up to {% data variables.projects.sub-issue_limit %} sub-issues per parent issue and create up to eight levels of nested sub-issues.
## Creating a sub-issue
diff --git a/data/variables/projects.yml b/data/variables/projects.yml
index 69e43d04d6c5..7b533b851aba 100644
--- a/data/variables/projects.yml
+++ b/data/variables/projects.yml
@@ -22,5 +22,7 @@ projects_v2_and_v1_if_create: '{% data variables.projects.projects_v2 %}{% ifver
# Limits
item_limit: '1,200'
archived_item_limit: '10,000'
+issue_type_limit: '25'
+sub-issue_limit: '100'
tasklists: 'tasklists (beta)'