Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 3822dc6

Browse files
committed
Renamed the properties interface to settings
This is really the base settings for a card container.
1 parent 68e7fef commit 3822dc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/components/cardContainer/builder/cardContainerBuilder.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export enum CardContainerType {
3333
selectable,
3434
}
3535

36-
export interface ICardContainerProperties {
36+
export interface ICardContainerSettings {
3737
search?: boolean;
3838
paging?: boolean;
3939
maxColumnSorts?: number;
@@ -62,7 +62,7 @@ export class CardContainerBuilderService {
6262
this.injector = injector;
6363
}
6464

65-
getInstance(settings: ICardContainerProperties): ICardContainerInstance {
65+
getInstance(settings: ICardContainerSettings): ICardContainerInstance {
6666
return <any>{
6767
search: settings.search,
6868
paging: settings.paging,

0 commit comments

Comments
 (0)