Skip to content

Commit 6e30160

Browse files
authored
Merge pull request #159 from diffix/edon/anon-table
Results table updates
2 parents a5adbca + e8b3c6f commit 6e30160

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
### Version 0.2.2
22

33
- Increased noise SD to 1.0.
4+
- Updated appearance of anonymized results table.
45

56
### Version 0.2.1
67

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.AnonymizedResultsTable.combined .AnonymizedResultsTable-row.low-count {
2-
color: #ff4d4f;
2+
color: #00000073;
3+
background-color: #f3f3f3;
34
}

src/AnonymizationStep/AnonymizedResultsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const mapColumn = (mode: DisplayMode) => (column: AnonymizedResultColumn, i: num
6363
return [
6464
makeColumnData(column.name + ' (anonymized)', i + '_anon', AGG_COLUMN_TYPE, renderLowCountValue),
6565
makeColumnData(column.name + ' (original)', i + '_real', AGG_COLUMN_TYPE),
66-
makeColumnData(column.name + ' noise', i + '_diff', 'real', renderRelativeNoiseValue),
66+
makeColumnData('Distortion', i + '_diff', 'real', renderRelativeNoiseValue),
6767
];
6868
}
6969
}

0 commit comments

Comments
 (0)