dataset-item.component.html 842 B

123456789101112
  1. <button type="button" class="btn btn-sm btn-light hs-lm-item-visibility"
  2. [ngClass]="dataset.included ? 'hs-checkmark' : 'hs-uncheckmark'"
  3. (click)="dataset.included = !dataset.included;$event.stopPropagation()"></button>
  4. <span class="glyphicon cursor-pointer text-secondary"
  5. [ngClass]="descriptionVisible ? 'icon-chevron-down' : 'icon-chevron-right'"
  6. (click)="descriptionVisible = !descriptionVisible"></span>
  7. <!--label class="ps-2 cursor-pointer text-secondary"
  8. (click)="descriptionVisible = !descriptionVisible">{{dataset.name}}</label-->
  9. <label><!-- FIXME: a class="text-info non-underlined-link" (click)="showMetadataWindow(dataset)"-->{{getLabelInCurrentLang(dataset.labels)}}<!--/a--></label>
  10. <div class="p-2 mb-2 text-info" [hidden]="!descriptionVisible">
  11. {{dataset.desc}}
  12. </div>