Skip to content

Commit

Permalink
Fix wrongly resolved merge
Browse files Browse the repository at this point in the history
Merge #fa6eb6ae had wrongly resolved code
  • Loading branch information
lukasmatta committed Nov 6, 2023
1 parent c900233 commit 4d33272
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ export class BaseTreeDropdownComponent
* When it is not an empty string, an info icon is displayed to show text for more info.
* @group Props
*/
@Input() numToleratedItems = 10;
@Input() infoTooltip = '';
@Input() numToleratedItems = 10;

/**
* Info tooltip class for styling.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ export class CpsAutocompleteComponent
*When it is not an empty string, an info icon is displayed to show text for more info.
* @group Props
*/
@Input() numToleratedItems = 10;
@Input() infoTooltip = '';
@Input() numToleratedItems = 10;
/**
* Info tooltip class for styling.
* @group Props
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ export class CpsSelectComponent
*When it is not an empty string, an info icon is displayed to show text for more info.
* @group Props
*/
@Input() numToleratedItems = 10;
@Input() infoTooltip = '';
@Input() numToleratedItems = 10;
/**
* Info tooltip class for styling.
* @group Props
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,11 @@ export type CpsTableSortMode = 'single' | 'multiple';
}
]
})
export class CpsTableComponent implements OnInit, AfterViewChecked {
export class CpsTableComponent implements OnInit, AfterViewChecked, OnChanges {
/**
* An array of items to display on table.
* @group Props
*/
export class CpsTableComponent implements OnInit, AfterViewChecked, OnChanges {
@Input() data: any[] = [];
/**
* An array of objects to represent columns on table.
Expand Down Expand Up @@ -296,7 +295,6 @@ export class CpsTableComponent implements OnInit, AfterViewChecked, OnChanges {
*/
@Input() clearGlobalFilterOnLoading = false;

@Input() showRemoveBtnOnSelect = true;
@Input() removeBtnOnSelectDisabled = false;

@Input() showAdditionalBtnOnSelect = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ export class CpsTreeTableComponent
*/
@Input() clearGlobalFilterOnLoading = false;

@Input() showRemoveBtnOnSelect = true;
@Input() removeBtnOnSelectDisabled = false;

@Input() showAdditionalBtnOnSelect = false;
Expand Down

0 comments on commit 4d33272

Please sign in to comment.