Skip to content

Commit

Permalink
Fixed #9876 - p-sidebar appendTo has wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
cagataycivici committed Feb 10, 2021
1 parent 32d34fb commit b3f6c6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/components/cascadeselect/cascadeselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ export class CascadeSelect implements OnInit, AfterContentInit, OnDestroy {

@Input() ariaLabelledBy: string;

@Input() appendTo: string;
@Input() appendTo: any;

@Input() disabled: boolean;

Expand Down
2 changes: 1 addition & 1 deletion src/app/components/colorpicker/colorpicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class ColorPicker implements ControlValueAccessor, OnDestroy {

@Input() format: string = 'hex';

@Input() appendTo: string;
@Input() appendTo: any;

@Input() disabled: boolean;

Expand Down
2 changes: 1 addition & 1 deletion src/app/components/sidebar/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class Sidebar implements AfterViewInit, AfterContentInit, AfterViewChecke

@Input() fullScreen: boolean;

@Input() appendTo: string;
@Input() appendTo: any;

@Input() blockScroll: boolean = false;

Expand Down

0 comments on commit b3f6c6c

Please sign in to comment.