fix(striker-ui-api): correct condition to append flag to manage alerts

main
Tsu-ba-me 11 months ago
parent e340169dbe
commit 6a47a4c9be
  1. 2
      striker-ui-api/src/lib/execManageAlerts.ts

@ -58,7 +58,7 @@ export const execManageAlerts = (
(previous, [key, flag]) => { (previous, [key, flag]) => {
const value = shallow[key]; const value = shallow[key];
if (value) { if (value !== undefined) {
previous.push(flag, String(value)); previous.push(flag, String(value));
} }

Loading…
Cancel
Save