Skip to content

Commit 278448e

Browse files
Merge branch 'main' into task/WP-729
2 parents b3c8c16 + e5c17d8 commit 278448e

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.10.1]
11+
12+
### Fixed
13+
14+
- WP-778: Fix infinite loop for state update in useEffect (#1019)
15+
- Quick: CSS regression fixes- testing session (#1018)
16+
1017
## [3.10.0]
1118

1219
### Added
@@ -1134,7 +1141,8 @@ WP-306: Fix target path regression (#871)
11341141
## [1.0.0] - 2020-02-28
11351142
v1.0.0 Production release as of Feb 28, 2020.
11361143

1137-
[unreleased]: https://github.com/TACC/Core-Portal/compare/v3.10.0...HEAD
1144+
[unreleased]: https://github.com/TACC/Core-Portal/compare/v3.10.1...HEAD
1145+
[3.10.1]: https://github.com/TACC/Core-Portal/releases/tag/v3.10.1
11381146
[3.10.0]: https://github.com/TACC/Core-Portal/releases/tag/v3.10.0
11391147
[3.9.0]: https://github.com/TACC/Core-Portal/releases/tag/v3.9.0
11401148
[3.8.2]: https://github.com/TACC/Core-Portal/releases/tag/v3.8.2

client/src/components/DataFiles/DataFilesProjectMembers/DataFilesProjectMembers.module.scss

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
}
2121

2222
.member-search {
23-
margin-bottom: 1em;
2423
font-size: 12px !important;
2524
}
2625

client/src/styles/components/dropdown-menu.css

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,18 @@ Styleguide Components.Dropdown
2020
.dropdown-menu::before,
2121
.dropdown-menu::after {
2222
position: absolute;
23-
top: -10px;
2423
left: 65px;
2524
border-right: 10px solid transparent;
2625
border-bottom: 10px solid var(--global-color-accent--normal);
2726
border-left: 10px solid transparent;
2827
margin-left: 20px;
2928
content: '';
3029
}
30+
.dropdown-menu::before {
31+
top: -10px;
32+
}
3133
.dropdown-menu::after {
34+
top: -9px;
3235
border-bottom-color: var(--global-color-primary--xx-light);
3336
}
3437

0 commit comments

Comments
 (0)