Skip to content

Commit 37380aa

Browse files
committed
fixed another small bug
1 parent ff46fe1 commit 37380aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/nav-buttons/ExportMenu.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,16 +297,16 @@ export default {
297297
}
298298
else if (compClass !== "" && compID === "") {
299299
if(this.$store.state.exportOauth ==='on'||this.$store.state.exportOauthGithub ==='on'){
300-
return `<template>\n <div class = "${compClass}">\n${templateTagStr}${routeStr} \t\t<Oauth/>\n\t</div>\n</template>`;
300+
return `<template>\n <div class = "${compClass}">\n${templateTagStr}${routeStr} \t<Oauth/>\n\t</div>\n</template>`;
301301
}
302302
return `<template>\n <div class = "${compClass}">\n${templateTagStr}${routeStr} \n\t</div>\n</template>`;
303303
}
304304
else if (compClass === "" && compID !== "") {
305-
if(this.$store.state.exportOauth ==='on'||this.$store.state.exportOauthGithub ==='on'){return `<template>\n <div id = "${compID}">\n${templateTagStr}${routeStr}\n\t\t<Oauth/>\n\t</div>\n</template>`;}
305+
if(this.$store.state.exportOauth ==='on'||this.$store.state.exportOauthGithub ==='on'){return `<template>\n <div id = "${compID}">\n${templateTagStr}${routeStr}\n<Oauth/>\n\t</div>\n</template>`;}
306306
return `<template>\n <div id = "${compID}">\n${templateTagStr}${routeStr} </div>\n</template>`;
307307
}
308308
else {
309-
if(this.$store.state.exportOauth ==='on'||this.$store.state.exportOauthGithub ==='on'){return `<template>\n <div>\n\t${str}${templateTagStr}${routeStr}\t\t<Oauth/> \n\t</div>\n</template>`;}
309+
if(this.$store.state.exportOauth ==='on'||this.$store.state.exportOauthGithub ==='on'){return `<template>\n <div>\n\t${str}${templateTagStr}${routeStr}\t<Oauth/> \n\t</div>\n</template>`;}
310310
return `<template>\n <div>\n\t${str}${templateTagStr}${routeStr} </div>\n</template>`;
311311
}
312312
}

0 commit comments

Comments
 (0)