diff options
Diffstat (limited to 'ext/js/templates')
| -rw-r--r-- | ext/js/templates/sandbox/template-renderer-frame-api.js | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/js/templates/sandbox/template-renderer-frame-api.js b/ext/js/templates/sandbox/template-renderer-frame-api.js index 94ebf7fe..388401f2 100644 --- a/ext/js/templates/sandbox/template-renderer-frame-api.js +++ b/ext/js/templates/sandbox/template-renderer-frame-api.js @@ -17,6 +17,7 @@   */  import {ExtensionError} from '../../core/extension-error.js'; +import {parseJson} from '../../core/json.js';  export class TemplateRendererFrameApi {      /** @@ -108,7 +109,7 @@ export class TemplateRendererFrameApi {       * @returns {T}       */      _clone(value) { -        return JSON.parse(JSON.stringify(value)); +        return parseJson(JSON.stringify(value));      }      /**  |