Skip to content

Commit

Permalink
Fix wrapper defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
ybnd committed Apr 25, 2024
1 parent d82b564 commit 1dacc44
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { BadgesComponent } from './badges.component';
export class ThemedBadgesComponent extends ThemedComponent<BadgesComponent> {
@Input() object: DSpaceObject;
@Input() context: Context;
@Input() showAccessStatus = false;
@Input() showAccessStatus: boolean;

protected inAndOutputNames: (keyof BadgesComponent & keyof this)[] = ['object', 'context', 'showAccessStatus'];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class SearchSidebarComponent {
/**
* The configuration to use for the search options
*/
@Input() configuration;
@Input() configuration: string;

/**
* The list of available configuration options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ import { SearchSidebarComponent } from './search-sidebar.component';
})
export class ThemedSearchSidebarComponent extends ThemedComponent<SearchSidebarComponent> {

@Input() configuration;
@Input() configuration: string;
@Input() configurationList: SearchConfigurationOption[];
@Input() currentScope: string;
@Input() currentSortOption: SortOptions;
@Input() filters: Observable<RemoteData<SearchFilterConfig[]>>;
@Input() resultCount;
@Input() resultCount: number;
@Input() viewModeList: ViewMode[];
@Input() showViewModes = true;
@Input() inPlaceSearch;
@Input() showViewModes: boolean;
@Input() inPlaceSearch: boolean;
@Input() searchOptions: PaginatedSearchOptions;
@Input() sortOptionsList: SortOptions[];
@Input() refreshFilters: BehaviorSubject<boolean>;
Expand Down

0 comments on commit 1dacc44

Please sign in to comment.