Skip to content

Commit

Permalink
Show detailed view by default when listing containers
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloG02 committed Sep 4, 2024
1 parent d0e4e66 commit 21650f9
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ export class SearchListComponent {
return [...matchedContainers].sort();
});

protected isCompact = signal<boolean>(true);
/**
* Level of detail for the container list. If true, the list is compact.
*/
protected isCompact = signal<boolean>(false);

constructor() {
this.containerService.getContainersMap().subscribe((containers) => {
Expand Down Expand Up @@ -76,9 +79,9 @@ export class SearchListComponent {
}

/**
* Filters containers by checking if any container's name includes the specified
* Filters containers by checking if any container's name includes the specified
* name (case-insensitive) and adds matching containers to a set.
*
*
* @param {string} name - The name to search for within container names.
* @param {Set<string>} matchedContainers - The set to add matching containers to.
*/
Expand Down

0 comments on commit 21650f9

Please sign in to comment.