File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -136,10 +136,10 @@ 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 );
139
+ // console.log("ALERT")
140
+ // console.log('hellloo')
141
+ // console.log("here", htmlArr[0].class)
142
+ // console.log(htmlArr[0].children);
143
143
let outputStr = ` ` ;
144
144
// eslint-disable-next-line no-unused-vars
145
145
for (const el of htmlArr) {
@@ -241,7 +241,7 @@ export default {
241
241
console .log (" down here" , htmlArray);
242
242
let styleString = " " ;
243
243
for (const html of htmlArray) {
244
- if (! html .class ) styleString = " " ;
244
+ if (html .class === ' ' ) styleString = " " ;
245
245
if (html .class ) {
246
246
styleString += ` .${ html .class } {\n }\n `
247
247
}
You can’t perform that action at this time.
0 commit comments