Fix templates on transformation being saved as array of array (#9846)

This commit is contained in:
Chelsea Shaw 2020-08-27 16:42:05 -05:00 committed by GitHub
parent 55a17be455
commit 5ea596cfab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}