|
|
@ -266,7 +266,7 @@ class SignalRConnector extends Component {
|
|
|
|
handleWantedCutoff = (body) => {
|
|
|
|
handleWantedCutoff = (body) => {
|
|
|
|
if (body.action === 'updated') {
|
|
|
|
if (body.action === 'updated') {
|
|
|
|
this.props.dispatchUpdateItem({
|
|
|
|
this.props.dispatchUpdateItem({
|
|
|
|
section: 'cutoffUnmet',
|
|
|
|
section: 'wanted.cutoffUnmet',
|
|
|
|
updateOnly: true,
|
|
|
|
updateOnly: true,
|
|
|
|
...body.resource
|
|
|
|
...body.resource
|
|
|
|
});
|
|
|
|
});
|
|
|
@ -276,7 +276,7 @@ class SignalRConnector extends Component {
|
|
|
|
handleWantedMissing = (body) => {
|
|
|
|
handleWantedMissing = (body) => {
|
|
|
|
if (body.action === 'updated') {
|
|
|
|
if (body.action === 'updated') {
|
|
|
|
this.props.dispatchUpdateItem({
|
|
|
|
this.props.dispatchUpdateItem({
|
|
|
|
section: 'missing',
|
|
|
|
section: 'wanted.missing',
|
|
|
|
updateOnly: true,
|
|
|
|
updateOnly: true,
|
|
|
|
...body.resource
|
|
|
|
...body.resource
|
|
|
|
});
|
|
|
|
});
|
|
|
|