Skip to content

Commit 87e77a1

Browse files
committed
fix filter bootstrap filters not saved
1 parent f50d094 commit 87e77a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: app/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ var AngularFullstackGenerator = yeoman.generators.Base.extend({
103103
this.filters[answers.markup] = true;
104104
this.filters[answers.stylesheet] = true;
105105
this.filters[answers.router] = true;
106-
if(answers.bootstrap) this.filters[answers.bootstrap] = true;
107-
if(answers.uibootstrap) this.filters[answers.uibootstrap] = true;
106+
if(answers.bootstrap) this.filters['bootstrap'] = true;
107+
if(answers.uibootstrap) this.filters['uibootstrap'] = true;
108108
cb();
109109
}.bind(this));
110110
},

0 commit comments

Comments
 (0)