Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions report-app/src/app/pages/report-viewer/report-viewer.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,18 +182,6 @@ <h4>Repair System Prompt</h4>
</expansion-panel>
}

<button #aiAssistButton class="fab" (click)="isAiAssistantVisible.set(true)">
<span class="material-symbols-outlined">smart_toy</span>
</button>

@defer (on interaction(aiAssistButton)) {
<app-ai-assistant
[class.hidden]="!isAiAssistantVisible()"
[reportGroupId]="reportGroupId()"
(close)="isAiAssistantVisible.set(false)"
/>
}

@if (missingDeps().length > 0) {
<expansion-panel size="large" class="root-section">
<expansion-panel-header>
Expand Down Expand Up @@ -238,6 +226,18 @@ <h4>Logs</h4>
</expansion-panel>
}

<button #aiAssistButton class="fab" (click)="isAiAssistantVisible.set(true)">
<span class="material-symbols-outlined">smart_toy</span>
</button>

@defer (on interaction(aiAssistButton)) {
<app-ai-assistant
[class.hidden]="!isAiAssistantVisible()"
[reportGroupId]="reportGroupId()"
(close)="isAiAssistantVisible.set(false)"
/>
}

<h2>Generated applications</h2>
@if (allFailedChecks().length > 0) {
<details class="filter-dropdown" #dropdown>
Expand Down
Loading