16 lines
600 B
HTML
16 lines
600 B
HTML
<div class="flex flex-col flex-1 h-full">
|
|
<div class="flex flex-row flex-1 overflow-hidden gap-2">
|
|
<app-tasks-executions-list
|
|
class="w-[320px] shrink-0"
|
|
[executions]="executions()"
|
|
[selectedExecutionId]="selectedExecutionId()"
|
|
(executionSelected)="selectExecution($event)"
|
|
(executionDeleteRequested)="removeExecution($event)">
|
|
</app-tasks-executions-list>
|
|
|
|
<main class="flex flex-col w-full bg-gray-100 overflow-hidden rounded-md">
|
|
<app-task-execution-viewer [execution]="selectedExecution()"></app-task-execution-viewer>
|
|
</main>
|
|
</div>
|
|
</div>
|