Correctly parsing component attributes

Change-Id: Idacb742e11b6d7349d981222eb0b63f79eb93410
diff --git a/src/app/core/services/helpers/component-injector.helpers.ts b/src/app/core/services/helpers/component-injector.helpers.ts
index 8fd7a50..9b7d58f 100644
--- a/src/app/core/services/helpers/component-injector.helpers.ts
+++ b/src/app/core/services/helpers/component-injector.helpers.ts
@@ -50,7 +50,7 @@
 
   private stringifyAttributes(attributes: any): string {
     return _.reduce(Object.keys(attributes), (string: string, a: string) => {
-      string += `${a}="${a}"`;
+      string += `${this.camelToSnakeCase(a)}="${a}"`;
       return string;
     }, '');
   }