style: lint
All checks were successful
Build / Build-and-ng-test (pull_request) Successful in 1m4s

This commit is contained in:
Mihajlo Medjedovic 2024-04-01 13:50:50 +02:00
parent ef81e33f70
commit 79121168e4
4 changed files with 14 additions and 22 deletions

View File

@ -20,9 +20,7 @@
> >
<clr-datagrid> <clr-datagrid>
<ng-container *ngFor="let col of tab.colsToDisplay"> <ng-container *ngFor="let col of tab.colsToDisplay">
<clr-dg-column <clr-dg-column>{{ col.colName || col.colKey }}</clr-dg-column>
>{{ col.colName || col.colKey }}</clr-dg-column
>
</ng-container> </ng-container>
<clr-dg-row <clr-dg-row

View File

@ -54,10 +54,7 @@ export class DatasetInfoComponent implements OnInit, OnChanges {
this.dsmetaTabs.push({ this.dsmetaTabs.push({
name: info.ODS_TABLE, name: info.ODS_TABLE,
title: 'Dataset Meta', title: 'Dataset Meta',
colsToDisplay: [ colsToDisplay: [{ colKey: 'NAME' }, { colKey: 'VALUE' }],
{colKey: 'NAME'},
{colKey: 'VALUE'}
],
meta: [], meta: [],
onRowClick: (value: DSMeta) => { onRowClick: (value: DSMeta) => {
this.rowClicked.emit(value) this.rowClicked.emit(value)

View File

@ -56,7 +56,6 @@
<div class="card-title text-center">Actions</div> <div class="card-title text-center">Actions</div>
</div> </div>
<div class="mt-20"> <div class="mt-20">
<div class="row"> <div class="row">
<button <button
class="btn btn-sm btn-outline text-center mt-20" class="btn btn-sm btn-outline text-center mt-20"
@ -101,9 +100,7 @@
clrSize="lg" clrSize="lg"
*clrIfOpen *clrIfOpen
> >
<span> <span> Revert this and all subsequent changes </span>
Revert this and all subsequent changes
</span>
</clr-tooltip-content> </clr-tooltip-content>
</button> </button>
</clr-tooltip> </clr-tooltip>