diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts
index 105fdf5c2f7..ecd1b1780ff 100755
--- a/src/app/components/dropdown/dropdown.ts
+++ b/src/app/components/dropdown/dropdown.ts
@@ -932,7 +932,7 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV
this.updateEditableLabel();
}
- if(visibleOptions && ObjectUtils.isNotEmpty(visibleOptions)) {
+ if (visibleOptions && ObjectUtils.isNotEmpty(visibleOptions)) {
this.selectedOption = visibleOptions[this.findSelectedOptionIndex()];
}
});
diff --git a/src/app/components/listbox/listbox.ts b/src/app/components/listbox/listbox.ts
index 220bf77233f..f1a3ec16d9a 100755
--- a/src/app/components/listbox/listbox.ts
+++ b/src/app/components/listbox/listbox.ts
@@ -784,7 +784,7 @@ export class Listbox implements AfterContentInit, OnInit, ControlValueAccessor,
return;
}
- event && this.onClick.emit({ originalEvent: event, option, value: this.value, });
+ event && this.onClick.emit({ originalEvent: event, option, value: this.value });
this.multiple ? this.onOptionSelectMultiple(event, option) : this.onOptionSelectSingle(event, option);
this.optionTouched = false;
diff --git a/src/app/components/tabview/tabview.ts b/src/app/components/tabview/tabview.ts
index 485d9d9ddf1..a24c84af46c 100755
--- a/src/app/components/tabview/tabview.ts
+++ b/src/app/components/tabview/tabview.ts
@@ -272,7 +272,16 @@ export class TabPanel implements AfterContentInit, OnDestroy {
template: `
-