Add experiment logs to the monitoring page #48

Merged
0950726 merged 122 commits from feat/experiment-logs into dev 2026-01-28 10:16:00 +00:00
Showing only changes of commit f2c01f67ac - Show all commits

View File

@@ -122,16 +122,7 @@ export const StatusList: React.FC<StatusListProps> = ({ title, items, type }) =>
const handleOverrideClick = () => {
if (!canOverride) return;
let contextValue = String(item.id);
if (type === 'trigger' || type === 'cond_norm') {
if (item.condition?.id) {
contextValue = String(item.condition);
}
}
sendUserInterrupt("override", contextValue);
};