Skip to content

Commit b36b2bf

Browse files
committed
Fix tests
1 parent a905b25 commit b36b2bf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/amo/components/Categories.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ export class CategoriesBase extends React.Component {
6060

6161
return (
6262
<div className="Categories">
63+
{loading ? (
64+
<div className="Categories-loadingText">
65+
{i18n.gettext('Loading categories.')}
66+
</div>
67+
) : null}
6368
<ul className="Categories-list"
6469
ref={(ref) => { this.categories = ref; }}>
6570
{categories.map((category) => (

0 commit comments

Comments
 (0)