File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -136,10 +136,6 @@ export default {
136
136
137
137
// Iterates through active component's HTML elements list and adds to code snippet
138
138
let htmlArr = this .componentMap [componentName].htmlList ;
139
- console .log (" ALERT" )
140
- console .log (' hellloo' )
141
- console .log (" here" , htmlArr[0 ].class )
142
- console .log (htmlArr[0 ].children );
143
139
let outputStr = ` ` ;
144
140
// eslint-disable-next-line no-unused-vars
145
141
for (const el of htmlArr) {
@@ -238,10 +234,9 @@ export default {
238
234
}
239
235
240
236
let htmlArray = this .componentMap [componentName].htmlList ;
241
- console .log (" down here" , htmlArray);
242
237
let styleString = " " ;
243
238
for (const html of htmlArray) {
244
- if (! html .class ) styleString = " " ;
239
+ if (html .class === ' ' ) styleString = " " ;
245
240
if (html .class ) {
246
241
styleString += ` .${ html .class } {\n }\n `
247
242
}
You can’t perform that action at this time.
0 commit comments