Skip to content

Commit

Permalink
fix: display properties fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolsinghbhatia committed Jun 29, 2023
1 parent d8eeb9e commit ebf877b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/app/components/core/issues-view-filter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,8 @@ export const IssuesFilterView: React.FC = () => {
if (key === "estimate" && !isEstimateActive) return null;

if (
(issueView === "spreadsheet" && key === "sub_issue_count") ||
key === "attachment_count" ||
key === "link"
(issueView === "spreadsheet" && key === "attachment_count") ||
(issueView === "spreadsheet" && key === "link")
)
return null;

Expand Down

0 comments on commit ebf877b

Please sign in to comment.