Skip to content

Commit 1dd6522

Browse files
committed
feat: filter default strategy
1 parent 2f06fec commit 1dd6522

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/ApplicationGroup/Details/TriggerView/EnvTriggerView.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1515,7 +1515,8 @@ export default function EnvTriggerView({ filteredAppIds, isVirtualEnv }: AppGrou
15151515
? { runtimeParamsPayload: getRuntimeParamsPayload(runtimeParams[currentAppId] ?? []) }
15161516
: {}),
15171517
skipIfHibernated,
1518-
...(strategy ? { strategy } : {}),
1518+
// strategy DEFAULT means custom chart
1519+
...(strategy && strategy !== 'DEFAULT' ? { strategy } : {}),
15191520
}),
15201521
)
15211522
} else {

0 commit comments

Comments
 (0)