Remove console logging

This commit is contained in:
jomaxro 2017-04-20 16:08:16 -04:00 committed by GitHub
parent 7a9eee1b71
commit b3eef0513f
1 changed files with 0 additions and 2 deletions

View File

@ -32,8 +32,6 @@ const Theme = RestModel.extend({
getError(target, name) {
let themeFields = this.get("themeFields");
let key = target + " " + name;
console.log(themeFields);
console.log(key);
let field = themeFields[key];
return field ? field.error : "";
},