Skip to content

Commit

Permalink
Trimmed down labels to pass linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill Whorton committed Feb 9, 2024
1 parent 3fd2179 commit b1b1c37
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 31 deletions.
6 changes: 3 additions & 3 deletions dist/ccdb5.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ccdb5.css.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/ccdb5.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/ccdb5.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ object-assign
*/

/**
* @remix-run/router v1.0.2
* @remix-run/router v1.8.0
*
* Copyright (c) Remix Software Inc.
*
Expand All @@ -114,7 +114,7 @@ object-assign
*/

/**
* React Router DOM v6.4.2
* React Router DOM v6.15.0
*
* Copyright (c) Remix Software Inc.
*
Expand All @@ -125,7 +125,7 @@ object-assign
*/

/**
* React Router v6.4.2
* React Router v6.15.0
*
* Copyright (c) Remix Software Inc.
*
Expand Down
2 changes: 1 addition & 1 deletion dist/ccdb5.js.map

Large diffs are not rendered by default.

29 changes: 9 additions & 20 deletions src/components/Dialogs/DataExport/DataExport.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,16 +149,11 @@ export const DataExport = () => {
value="filtered"
/>
<label className="a-label" htmlFor="dataset_filtered">
<div className="multiline-label">
<div>
Filtered dataset (
<FormattedNumber value={someComplaintsCount} />
&nbsp;complaints)
</div>
<div className="body-copy">
(only the results of the last search and/or filter)
</div>
</div>
Filtered dataset (
<FormattedNumber value={someComplaintsCount} />
&nbsp;complaints)
<br />
(only the results of the last search and/or filter)
</label>
</div>
<div className="m-form-field m-form-field__radio m-form-field__lg-target">
Expand All @@ -174,16 +169,10 @@ export const DataExport = () => {
value="full"
/>
<label className="a-label" htmlFor="dataset_full">
<div className="multiline-label">
<div>
Full dataset (
<FormattedNumber value={allComplaintsCount} />
&nbsp;complaints)
</div>
<div className="body-copy">
(not recommended due to very large file size)
</div>
</div>
Full dataset (<FormattedNumber value={allComplaintsCount} />
&nbsp;complaints)
<br />
(not recommended due to very large file size)
</label>
</div>
</div>
Expand Down

0 comments on commit b1b1c37

Please sign in to comment.