Skip to content

Commit e98908a

Browse files
committed
feature/1.8-Improve system observability
1 parent 32bc735 commit e98908a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/packages/core/src/pages/serviceLogs/ApiNetWorkDataPreview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const ApiNetWorkDataPreview = ({ configContent = {} }: { configContent?: { [key:
3535

3636
return (
3737
<>
38-
{Object.keys(configContent).map((item) => {
38+
{Object.keys(configContent).filter((item) => !!configContent[item]).map((item) => {
3939
return (
4040
<div className="overflow-auto mb-[15px]">
4141
<div className="font-semibold text-[16px] mb-[10px]">{item}</div>

0 commit comments

Comments
 (0)