galaxyproject / cloudlaunch-ui

A user interface for the cloudlaunch app
MIT License
8 stars 13 forks source link

Fetching cloudman buckets is using incorrect key #21

Closed nuwang closed 6 years ago

nuwang commented 6 years ago

The drop down list is currently using

<mat-option *ngFor="let cluster of savedClusters" [value]="cluster">
    {{ cluster.cluster_name }}
</mat-option>

Should be using

<mat-option *ngFor="let cluster of savedClusters" [value]="cluster.<something>">
    {{ cluster.cluster_name }}
</mat-option>
nuwang commented 6 years ago

Closed by: https://github.com/galaxyproject/cloudlaunch-ui/commit/16b64e3837ac4c2e9c52e44abf140ddcbe686ede

Please reopen if there are any further issues.