dce-reactkit 3.2.2-beta.48 → 3.2.2-beta.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dce-reactkit",
3
- "version": "3.2.2-beta.48",
3
+ "version": "3.2.2-beta.49",
4
4
  "description": "Shared components for Harvard DCE apps",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -1128,6 +1128,10 @@ const LogReviewer: React.FC<Props> = (props) => {
1128
1128
  });
1129
1129
  }}
1130
1130
  >
1131
+ <FontAwesomeIcon
1132
+ icon={faTimes}
1133
+ />
1134
+ {' '}
1131
1135
  Reset
1132
1136
  </button>
1133
1137
  </div>
@@ -1388,7 +1392,7 @@ const LogReviewer: React.FC<Props> = (props) => {
1388
1392
  label="Action"
1389
1393
  className="mb-2"
1390
1394
  >
1391
- <div className="grid gap-1">
1395
+ <div className="d-flex gap-1 flex-wrap">
1392
1396
  {
1393
1397
  Object.keys(LogAction)
1394
1398
  .map((action) => {
@@ -1418,7 +1422,7 @@ const LogReviewer: React.FC<Props> = (props) => {
1418
1422
  {/* Target */}
1419
1423
  <ButtonInputGroup label="Target">
1420
1424
  {/* List of targets */}
1421
- <div className="grid gap-1">
1425
+ <div className="d-flex gap-1 flex-wrap">
1422
1426
  {
1423
1427
  Object.keys(targetMap)
1424
1428
  .map((target) => {