Skip to content

Commit 7035bb2

Browse files
author
Ives van Hoorne
committed
Fix 0 in workspace
1 parent 62ca3f6 commit 7035bb2

File tree

1 file changed

+1
-1
lines changed
  • packages/app/src/app/pages/Sandbox/Editor/Workspace/items/ConfigurationFiles

1 file changed

+1
-1
lines changed

packages/app/src/app/pages/Sandbox/Editor/Workspace/items/ConfigurationFiles/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ const ConfigurationFiles = ({ store, signals }) => {
129129
/>
130130
);
131131
})}
132-
{Object.keys(restPaths).length && (
132+
{!!Object.keys(restPaths).length && (
133133
<WorkspaceSubtitle>Other Configurations</WorkspaceSubtitle>
134134
)}
135135
{Object.keys(restPaths).map(path => {

0 commit comments

Comments
 (0)