From 344aabd2037e172bd3f3970db1e31f0ac7ce00c6 Mon Sep 17 00:00:00 2001 From: tokebe <43009413+tokebe@users.noreply.github.com> Date: Fri, 6 Aug 2021 11:52:40 -0400 Subject: [PATCH] fix: cache extra properties just in case --- src/cache_handler.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cache_handler.js b/src/cache_handler.js index f0da38b3..d99e89d7 100644 --- a/src/cache_handler.js +++ b/src/cache_handler.js @@ -59,6 +59,8 @@ module.exports = class { label: record.$input.obj[0].label, primaryID: record.$input.obj[0].primaryID, semanticType: record.$input.obj[0].semanticType, + semanticTypes: record.$input.obj[0].semanticTypes, + attributes: record.$input.obj[0].attributes, }, ], }, @@ -71,6 +73,8 @@ module.exports = class { label: record.$output.obj[0].label, primaryID: record.$output.obj[0].primaryID, semanticType: record.$output.obj[0].semanticType, + semanticTypes: record.$output.obj[0].semanticTypes, + attributes: record.$output.obj[0].attributes, }, ], },