From f129244c26c7f01d0b0227ce9c349463e0ef3c3e Mon Sep 17 00:00:00 2001 From: Wei Ouyang Date: Fri, 14 May 2021 11:36:48 +0200 Subject: [PATCH] Fix _rvalue key error --- .../src/components/tabContentComponents/imjoyContent.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openflexure_microscope/api/static/src/components/tabContentComponents/imjoyContent.vue b/openflexure_microscope/api/static/src/components/tabContentComponents/imjoyContent.vue index 4dbbe395..cac43c0d 100644 --- a/openflexure_microscope/api/static/src/components/tabContentComponents/imjoyContent.vue +++ b/openflexure_microscope/api/static/src/components/tabContentComponents/imjoyContent.vue @@ -503,7 +503,7 @@ export default { _rtype: "ndarray", _rdtype: "uint8", _rshape: [imagesAsNdarrays.length, shape[0], shape[1], shape[2]], - _rdata: stackData.buffer + _rvalue: stackData.buffer }; console.log( `Stack is ${transferredBytes} and will have shape: ${stackNdarray._rshape}` @@ -545,7 +545,7 @@ export default { _rtype: "ndarray", _rdtype: "uint8", _rshape: [imagesAsNdarrays.length, shape[0], shape[1], shape[2]], - _rdata: stackData + _rvalue: stackData }; console.log( `Stack is ${transferredBytes} and will have shape: ${stackNdarray._rshape}`