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
//if/else statement to determine if there are class and id attributes present in the html element
85
+
if (this.activeComponentObj.htmlAttributes.class!==""&&this.activeComponentObj.htmlAttributes.id!=="") {
86
+
return`<template>\n <div id = "${this.activeComponentObj.htmlAttributes.id}" class = "${this.activeComponentObj.htmlAttributes.class}">\n${templateTagStr} </div>\n</template>`;
0 commit comments