Skip to content
Snippets Groups Projects
Unverified Commit e48924d9 authored by Joel Jeremy Marquez's avatar Joel Jeremy Marquez Committed by GitHub
Browse files

Schedule privacy (#1580)

* Schedule privacy

* Release notes

* Fix schedule amount shifting
parent 2b06a42a
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@ import Button from '../common/Button';
import Menu from '../common/Menu';
import Text from '../common/Text';
import View from '../common/View';
import PrivacyFilter from '../PrivacyFilter';
import { Table, TableHeader, Row, Field, Cell } from '../table';
import { Tooltip } from '../tooltips';
import DisplayId from '../util/DisplayId';
......@@ -112,7 +113,7 @@ export function ScheduleAmountCell({ amount, op }) {
}}
title={(isApprox ? 'Approximately ' : '') + str}
>
{num > 0 ? `+${str}` : `${str}`}
<PrivacyFilter>{num > 0 ? `+${str}` : `${str}`}</PrivacyFilter>
</Text>
</Cell>
);
......
---
category: Enhancements
authors: [joel-jeremy]
---
Schedule page privacy filter
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