Skip to content

Commit 9ff6f91

Browse files
committed
Fix tags not rendering
Fixes codesandbox#2158
1 parent 21e26b0 commit 9ff6f91

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

packages/app/src/app/pages/Sandbox/Editor/Workspace/Project/Keywords.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const Keywords = observer(({ editable }: IKeywordsProps) => {
4242
}
4343
};
4444

45-
if (tags.length === 0) {
45+
if (tags.length === 0 && !editable) {
4646
return null;
4747
}
4848

0 commit comments

Comments
 (0)