mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
18 lines
691 B
HTML
18 lines
691 B
HTML
<div id="site-dropdown-container" class="adf-site-dropdown-container">
|
|
<mat-form-field>
|
|
<mat-select
|
|
data-automation-id="site-my-files-option"
|
|
class="adf-site-dropdown-list-element"
|
|
id="site-dropdown"
|
|
placeholder="{{placeholder | translate}}"
|
|
floatPlaceholder="never"
|
|
data-automation-id="site-my-files-select"
|
|
[(value)]="selected"
|
|
(selectionChange)="selectedSite($event)">
|
|
<mat-option *ngFor="let site of siteList?.list.entries" [value]="site">
|
|
{{ site.entry.title | translate}}
|
|
</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
</div>
|