Skip to content

Commit

Permalink
fix(table): fix outlined table
Browse files Browse the repository at this point in the history
  • Loading branch information
tmorehouse committed Nov 20, 2017
1 parent 157952d commit e81b107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/table/table.vue
Expand Up @@ -584,7 +584,7 @@
this.hover ? 'table-hover' : '',
this.dark ? 'table-dark' : '',
this.bordered ? 'table-bordered' : '',
this.outlined ? 'bordered' : '',
this.outlined ? 'border' : '',
responsive === true ? 'table-responsive' : (Boolean(responsive) ? `table-responsive-${responsive}` : ''),
this.fixed ? 'table-fixed' : '',
this.small ? 'table-sm' : ''
Expand Down

0 comments on commit e81b107

Please sign in to comment.