From e318acc977933e20adeb133ff78ecf26b3d00e8a Mon Sep 17 00:00:00 2001 From: zadam Date: Fri, 27 Nov 2020 22:33:33 +0100 Subject: [PATCH] fix incorrectly set isInheritable on inherited attrs --- src/public/app/widgets/attribute_list.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/public/app/widgets/attribute_list.js b/src/public/app/widgets/attribute_list.js index 0999ff4f2..7b50478e2 100644 --- a/src/public/app/widgets/attribute_list.js +++ b/src/public/app/widgets/attribute_list.js @@ -214,7 +214,8 @@ export default class AttributeListWidget extends TabAwareWidget { noteId: attribute.noteId, type: attribute.type, name: attribute.name, - value: attribute.value + value: attribute.value, + isInheritable: attribute.isInheritable }, isOwned: false, x: e.pageX,