diff --git a/src/components/pages/Artifacts.tsx b/src/components/pages/Artifacts.tsx index fc2e76a..861279f 100644 --- a/src/components/pages/Artifacts.tsx +++ b/src/components/pages/Artifacts.tsx @@ -148,7 +148,7 @@ export default function Artifacts() { if (propTypeValues[affix.PropType] === undefined) { propTypeValues[affix.PropType] = []; } - propTypeValues[affix.PropType].push(affix.PropValue); + if(affix.PropValue>0) propTypeValues[affix.PropType].push(affix.PropValue); }); return propTypeValues; };