This repository has been archived by the owner on Mar 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(routes) add routes for tabs (closes #397)
feat(routes) add routes for tabs add routes for tabs (VM, templates and spare-drives sidebar)
- Loading branch information
Darya Baklanova
authored
Aug 31, 2017
1 parent
e606ed2
commit 583c8bc
Showing
37 changed files
with
838 additions
and
368 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
14 changes: 8 additions & 6 deletions
14
src/app/spare-drive/spare-drive-sidebar/details/spare-drive-details.component.html
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,8 +1,10 @@ | ||
<cs-spare-drive-sidebar-volume [volume]="volume"></cs-spare-drive-sidebar-volume> | ||
<ng-container *ngIf="volume"> | ||
<cs-spare-drive-sidebar-volume [volume]="volume"></cs-spare-drive-sidebar-volume> | ||
|
||
<cs-description | ||
[description]="volume.description" | ||
(descriptionChange)="changeDescription($event)" | ||
></cs-description> | ||
<cs-description | ||
[description]="volume.description" | ||
(descriptionChange)="changeDescription($event)" | ||
></cs-description> | ||
|
||
<cs-spare-drive-sidebar-disk-offering [volume]="volume"></cs-spare-drive-sidebar-disk-offering> | ||
<cs-spare-drive-sidebar-disk-offering [volume]="volume"></cs-spare-drive-sidebar-disk-offering> | ||
</ng-container> |
17 changes: 13 additions & 4 deletions
17
src/app/spare-drive/spare-drive-sidebar/details/spare-drive-details.component.ts
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
14 changes: 8 additions & 6 deletions
14
...re-drive/spare-drive-sidebar/snapshot-details/spare-drive-snapshot-details.component.html
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,8 +1,10 @@ | ||
<cs-spare-drive-snapshot-creation [volume]="volume"></cs-spare-drive-snapshot-creation> | ||
<ng-container *ngIf="volume"> | ||
<cs-spare-drive-snapshot-creation [volume]="volume"></cs-spare-drive-snapshot-creation> | ||
|
||
<cs-spare-drive-snapshot | ||
*ngFor="let snapshot of volume.snapshots" | ||
[snapshot]="snapshot" | ||
></cs-spare-drive-snapshot> | ||
<cs-spare-drive-snapshot | ||
*ngFor="let snapshot of volume.snapshots" | ||
[snapshot]="snapshot" | ||
></cs-spare-drive-snapshot> | ||
|
||
<cs-no-results *ngIf="!volume.snapshots.length"></cs-no-results> | ||
<cs-no-results *ngIf="!volume.snapshots.length"></cs-no-results> | ||
</ng-container> |
19 changes: 16 additions & 3 deletions
19
...pare-drive/spare-drive-sidebar/snapshot-details/spare-drive-snapshot-details.component.ts
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
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
Oops, something went wrong.