You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: render component IDs as plain ints in alert email summaries
Previously, component IDs in alert summaries were shown as `numpy.int64`
objects, which rendered in emails like:
Components: [np.int64(1122), np.int64(1123), ...]
This commit ensures component IDs are converted to plain Python ints
during aggregation, so they display cleanly as:
Components: [1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130]
This improves readability and avoids confusion for users receiving
alert emails.
Signed-off-by: cyiallou - Costas <[email protected]>
0 commit comments