Skip to content

Commit

Permalink
filer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jschuler committed Jun 7, 2021
1 parent bd96ecf commit 2cc85d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"serve": "serve public"
},
"dependencies": {
"@patternfly/quickstarts": "1.0.0-rc.6",
"@patternfly/quickstarts": "1.0.0-rc.7",
"@patternfly/react-core": "^4.101.3",
"asciidoctor": "^2.2.1",
"react": "^16.14.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/module/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/quickstarts",
"version": "1.0.0-rc.6",
"version": "1.0.0-rc.7",
"description": "PatternFly quick starts",
"files": [
"dist"
Expand Down
4 changes: 2 additions & 2 deletions packages/module/src/QuickStartCatalogPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ export const QuickStartCatalogPage: React.FC<QuickStartCatalogPageProps> = ({
[allQuickStartStates, quickStarts],
);

if (!filteredQuickStarts) return <LoadingBox />;
return filteredQuickStarts.length === 0 ? (
if (!quickStarts) return <LoadingBox />;
return quickStarts.length === 0 ? (
<EmptyBox label={t('quickstart~Quick Starts')} />
) : (
<>
Expand Down

0 comments on commit 2cc85d4

Please sign in to comment.