From 5ea596cfabeda936783eec374bc9e62a8a8362b4 Mon Sep 17 00:00:00 2001 From: Chelsea Shaw Date: Thu, 27 Aug 2020 16:42:05 -0500 Subject: [PATCH] Fix templates on transformation being saved as array of array (#9846) --- ui/app/adapters/transform.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/adapters/transform.js b/ui/app/adapters/transform.js index 1f7627ba1f..65ffca614e 100644 --- a/ui/app/adapters/transform.js +++ b/ui/app/adapters/transform.js @@ -76,7 +76,7 @@ export default ApplicationAdapter.extend({ // To keep the keys consistent we're translating here d = { ...d, - template: [d.templates], + template: d.templates, }; delete d.templates; }