From 240033e560a5997f52f25dcacff5733a5e8f7ea7 Mon Sep 17 00:00:00 2001 From: "Piotr Kosko/Tizen API (PLT) /SRPOL/Engineer/Samsung Electronics" Date: Fri, 15 Mar 2024 12:52:00 +0100 Subject: [PATCH] [Content] Fixed the reconfigurable issue [Verification] Code compiles. Problem with find method does not appear anymore. Change-Id: I577ea7fd30fcb8ef7f34d1f66a2be7b5d5a4048c --- src/content/js/datatypes.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/content/js/datatypes.js b/src/content/js/datatypes.js index b903415..46aea3e 100755 --- a/src/content/js/datatypes.js +++ b/src/content/js/datatypes.js @@ -139,7 +139,8 @@ function Content(data) { return editableAttributes; }, set: function () { }, - enumerable: true + enumerable: true, + configurable: true }, id: { get: function() { @@ -361,7 +362,8 @@ function VideoContent(data) { return editableAttributes; }, set: function () { }, - enumerable: true + enumerable: true, + configurable: true }, geolocation: { get: function() { @@ -729,7 +731,8 @@ function ImageContent(data) { return editableAttributes; }, set: function () { }, - enumerable: true + enumerable: true, + configurable: true }, geolocation: { get: function() { -- 2.7.4