Skip to content
Snippets Groups Projects
Unverified Commit 32cc86ec authored by shall0pass's avatar shall0pass Committed by GitHub
Browse files

Mobile: Don't show hidden categories (#1539)

* don't show hidden categories on mobile

* release note
parent 6fae7956
No related branches found
No related tags found
No related merge requests found
......@@ -273,7 +273,7 @@ class BudgetCategory extends PureComponent {
let budgeted = rolloverBudget.catBudgeted(category.id);
let balance = rolloverBudget.catBalance(category.id);
let content = (
let content = !category.hidden && (
<ListItem
// ref={el => (this.container = el)}
style={[
......
---
category: Bugfix
authors: [shall0pass]
---
Mobile: Don't show hidden categories
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment