Skip to content

Commit

Permalink
fix(button): Minor code update
Browse files Browse the repository at this point in the history
Use regular single quotes instead of backticks
  • Loading branch information
tmorehouse authored Jul 21, 2017
1 parent f104dc0 commit 378b932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default {
return (this.href || this.to) ? 'b-link' : 'button';
},
btnBlock() {
return this.block ? `btn-block` : '';
return this.block ? 'btn-block' : '';
},
btnVariant() {
return this.variant ? `btn-${this.variant}` : `btn-secondary`;
Expand Down

0 comments on commit 378b932

Please sign in to comment.