mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 05:49:40 +02:00
chore: epic display filters improvement (#2503)
This commit is contained in:
committed by
GitHub
parent
ec29acc9cd
commit
688d196bba
@@ -165,7 +165,7 @@ export const ISSUE_DISPLAY_PROPERTIES_KEYS: (keyof IIssueDisplayProperties)[] =
|
||||
];
|
||||
|
||||
export const EPICS_DISPLAY_PROPERTIES_KEYS: (keyof IIssueDisplayProperties)[] = ISSUE_DISPLAY_PROPERTIES_KEYS.filter(
|
||||
(key) => !["cycle", "modules"].includes(key)
|
||||
(key) => !["cycle", "modules", "issue_type"].includes(key)
|
||||
);
|
||||
|
||||
export const ISSUE_DISPLAY_PROPERTIES: {
|
||||
|
||||
@@ -117,7 +117,7 @@ export const ADDITIONAL_ISSUE_DISPLAY_FILTERS_BY_PAGE: {
|
||||
},
|
||||
extra_options: {
|
||||
access: true,
|
||||
values: ["show_empty_groups", "sub_issue"],
|
||||
values: ["show_empty_groups"],
|
||||
},
|
||||
},
|
||||
kanban: {
|
||||
@@ -131,7 +131,7 @@ export const ADDITIONAL_ISSUE_DISPLAY_FILTERS_BY_PAGE: {
|
||||
},
|
||||
extra_options: {
|
||||
access: true,
|
||||
values: ["show_empty_groups", "sub_issue"],
|
||||
values: ["show_empty_groups"],
|
||||
},
|
||||
},
|
||||
calendar: {
|
||||
@@ -142,7 +142,7 @@ export const ADDITIONAL_ISSUE_DISPLAY_FILTERS_BY_PAGE: {
|
||||
},
|
||||
extra_options: {
|
||||
access: true,
|
||||
values: ["sub_issue"],
|
||||
values: [],
|
||||
},
|
||||
},
|
||||
spreadsheet: {
|
||||
@@ -154,7 +154,7 @@ export const ADDITIONAL_ISSUE_DISPLAY_FILTERS_BY_PAGE: {
|
||||
},
|
||||
extra_options: {
|
||||
access: true,
|
||||
values: ["sub_issue"],
|
||||
values: [],
|
||||
},
|
||||
},
|
||||
gantt_chart: {
|
||||
@@ -166,7 +166,7 @@ export const ADDITIONAL_ISSUE_DISPLAY_FILTERS_BY_PAGE: {
|
||||
},
|
||||
extra_options: {
|
||||
access: true,
|
||||
values: ["sub_issue"],
|
||||
values: [],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user