Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 28377e5

Browse files
committedJul 24, 2020
git push origin developMerge branch 'issues/timor/281' into develop
2 parents 3cb621c + a360c67 commit 28377e5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed
 

‎client/src/components/GroupsSideMenu/filters.module.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@
8383

8484
.sectionItem {
8585
cursor: pointer;
86-
height: 24px;
8786
width: 322px;
8887
border-radius: 10px;
8988
border: 1px solid gray1_025;
@@ -103,6 +102,8 @@
103102

104103
.sectionItemTitle {
105104
color: gray2;
105+
word-break: break-word;
106+
padding-right: 12px;
106107
}
107108

108109
.sectionItemBadge {

‎client/src/pages/Search/Global.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,12 +259,12 @@ export default function SearchGlobal({ keyword }) {
259259
const updateWindowDimensions = () => {
260260
setWindowWidth(window.innerWidth);
261261
};
262-
262+
263263
const onWholeContentClick = (evt) => {
264-
if(dropdownRef.current && !dropdownRef.current.contains(evt.target)) {
264+
if (dropdownRef.current && !dropdownRef.current.contains(evt.target)) {
265265
setSortByDropdownShown(false);
266266
}
267-
}
267+
};
268268

269269
return (
270270
<>

0 commit comments

Comments
 (0)
This repository has been archived.