You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/right-sidebar/CodeSnippet.vue
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ export default {
80
80
// Creates beginner boilerplate
81
81
createTemplate(componentName) {
82
82
let templateTagStr =this.writeTemplateTag(componentName);
83
-
83
+
84
84
//if/else statement to determine if there are class and id attributes present in the html element
85
85
if (this.activeComponentObj.htmlAttributes.class!==""&&this.activeComponentObj.htmlAttributes.id!=="") {
86
86
return`<template>\n <div id = "${this.activeComponentObj.htmlAttributes.id}" class = "${this.activeComponentObj.htmlAttributes.class}">\n${templateTagStr} </div>\n</template>`;
0 commit comments