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

Commit 3432a23

Browse files
Merge branch 'issues/timor/281' into develop
2 parents dae2919 + 6fbd130 commit 3432a23

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

client/src/components/GroupsSideMenu/filters.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,13 @@ GroupTabFilters.propTypes = {
118118
onCreateNewGroup: PT.func,
119119
};
120120

121-
function GroupsSection({ title, items, onItemClicked, selectedItemId, loadingGroups }) {
121+
function GroupsSection({
122+
title,
123+
items,
124+
onItemClicked,
125+
selectedItemId,
126+
loadingGroups,
127+
}) {
122128
return (
123129
<>
124130
<div className={styles.sectionTitle}>{title}</div>
@@ -137,7 +143,9 @@ function GroupsSection({ title, items, onItemClicked, selectedItemId, loadingGro
137143
);
138144
})}
139145
</div>
140-
{items.length === 0 && !loadingGroups && <div className={styles.message}>No results found</div>}
146+
{items.length === 0 && !loadingGroups && (
147+
<div className={styles.message}>No results found</div>
148+
)}
141149
</>
142150
);
143151
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102

103103
.sectionItemTitle {
104104
color: gray2;
105-
word-break: break-word;
105+
word-break: break-all;
106106
padding-right: 12px;
107107
}
108108

0 commit comments

Comments
 (0)