Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/primefaces/primevue
Browse files Browse the repository at this point in the history
  • Loading branch information
cagataycivici committed Aug 5, 2019
2 parents f263c1a + 5e58313 commit ec2272a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/accordion/Accordion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default {
<div key={tab.header||i} class="p-accordion-tab">
<div class={['p-accordion-header', {'p-highlight': tab.d_active, 'p-disabled': tab.disabled}]}>
<a role="tab" on-click={event => this.onTabClick(event, tab)} on-keydown={event => this.onTabKeydown(event, tab)} tabindex={tab.disabled ? null : '0'}>
<span class="p-accordion-toggle-icon pi pi-fw pi-caret-right"></span>
<span class={['p-accordion-toggle-icon pi pi-fw ',{'pi-caret-right': !tab.d_active, 'pi-caret-down': tab.d_active}]}></span>
{tab.header && <span class="p-accordion-header-text">{tab.header}</span>}
{tab.$slots.header}
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/components/dialog/Dialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div ref="container" :class="containerClass" v-if="visible">
<div class="p-dialog-titlebar" v-if="showHeader">
<slot name="header">
<span class="p-panel-title" v-if="header">{{header}}</span>
<span class="p-dialog-title" v-if="header">{{header}}</span>
</slot>
<div class="p-dialog-titlebar-icons">
<button class="p-dialog-titlebar-icon p-dialog-titlebar-close p-link" @click="close" v-if="closable">
Expand Down
1 change: 1 addition & 0 deletions src/components/inputswitch/InputSwitch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export default {
'p-inputswitch p-component',
{
'p-inputswitch-checked': this.value,
'p-disabled': this.disabled,
'p-inputswitch-focus': this.focused
}
];
Expand Down

0 comments on commit ec2272a

Please sign in to comment.