-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: don't show the gallery if autostorage is not set (#787)
* Disable market if storage account is not added * Fix
- Loading branch information
1 parent
85c8fdc
commit 0703ac3
Showing
9 changed files
with
28 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
export * from "./data.shared.module"; | ||
export * from "./file-group-picker"; | ||
export * from "./file-groups-picker"; | ||
export * from "./errors"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
<bl-scrollable> | ||
<div class="header"> | ||
<h1>Market applications</h1> | ||
<div class="filter"> | ||
<bl-refresh-btn [refresh]="refreshApplications" type="round"></bl-refresh-btn> | ||
<div class="quicksearch"> | ||
<input [formControl]="quicksearch" placeholder="Search"> | ||
<bl-storage-error-display></bl-storage-error-display> | ||
<div *ngIf="storageService.hasAutoStorage | async"> | ||
<div class="header"> | ||
<h1>Market applications</h1> | ||
<div class="filter"> | ||
<bl-refresh-btn [refresh]="refreshApplications" type="round"></bl-refresh-btn> | ||
<div class="quicksearch"> | ||
<input [formControl]="quicksearch" placeholder="Search"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="market-first-section"> | ||
<bl-recent-template-list></bl-recent-template-list> | ||
</div> | ||
<div class="applications"> | ||
<mat-card class="application local-templates" title="All your local templates" routerLink="/market/local"> | ||
<i class="fa fa-desktop logo"></i> | ||
<div class="name">Local templates</div> | ||
</mat-card> | ||
<mat-card *ngFor="let application of displayedApplications" class="application" [title]="application.description" [routerLink]="['/market', application.id, 'actions']"> | ||
<img class="logo" [src]="application.icon"> | ||
<div class="name">{{application.name}}</div> | ||
</mat-card> | ||
<div class="market-first-section"> | ||
<bl-recent-template-list></bl-recent-template-list> | ||
</div> | ||
<div class="applications"> | ||
<mat-card class="application local-templates" title="All your local templates" routerLink="/market/local"> | ||
<i class="fa fa-desktop logo"></i> | ||
<div class="name">Local templates</div> | ||
</mat-card> | ||
<mat-card *ngFor="let application of displayedApplications" class="application" [title]="application.description" [routerLink]="['/market', application.id, 'actions']"> | ||
<img class="logo" [src]="application.icon"> | ||
<div class="name">{{application.name}}</div> | ||
</mat-card> | ||
</div> | ||
</div> | ||
</bl-scrollable> |