Guest User

Untitled

a guest
May 17th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <ion-item *ngIf="test.length === 1" class="card test-select">
  2. <ion-select interface="popover" [(ngModel)]="selectedId">
  3. <ion-option item-right *ngFor="let test of tests" [value]="test._id">{{ test.name }}</ion-option>
  4. </ion-select>
  5. </ion-item>
  6.  
  7. page-test .test-select{
  8. flex: 9;
  9. height: 100%;
  10. max-height: 50px;
  11. max-width: 350px;
  12. background-color: #F6F7FF;
  13. }
Add Comment
Please, Sign In to add comment