From 563db9231eb0a8053f8dc890d44a246d48d964d6 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 14 May 2024 00:24:37 +0300 Subject: [PATCH] Update the wanted section for missing and cutoff unmet (cherry picked from commit 9b4ff657af41e67aeb5866ee3056f1a8f2a901ea) --- frontend/src/Components/SignalRConnector.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/Components/SignalRConnector.js b/frontend/src/Components/SignalRConnector.js index c970589c7..db631de6f 100644 --- a/frontend/src/Components/SignalRConnector.js +++ b/frontend/src/Components/SignalRConnector.js @@ -266,7 +266,7 @@ class SignalRConnector extends Component { handleWantedCutoff = (body) => { if (body.action === 'updated') { this.props.dispatchUpdateItem({ - section: 'cutoffUnmet', + section: 'wanted.cutoffUnmet', updateOnly: true, ...body.resource }); @@ -276,7 +276,7 @@ class SignalRConnector extends Component { handleWantedMissing = (body) => { if (body.action === 'updated') { this.props.dispatchUpdateItem({ - section: 'missing', + section: 'wanted.missing', updateOnly: true, ...body.resource });