Skip to content

Commit 122747c

Browse files
committed
Fix profiler template reference
1 parent 048e173 commit 122747c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ai-bundle/src/Profiler/DataCollector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function lateCollect(): void
6666

6767
public static function getTemplate(): string
6868
{
69-
return '@AI/data_collector.html.twig';
69+
return '@Ai/data_collector.html.twig';
7070
}
7171

7272
/**

src/ai-bundle/templates/data_collector.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% block toolbar %}
44
{% if collector.platformCalls|length > 0 %}
55
{% set icon %}
6-
{{ include('@AI/icon.svg', { y: 18 }) }}
6+
{{ include('@Ai/icon.svg', { y: 18 }) }}
77
<span class="sf-toolbar-value">{{ collector.platformCalls|length }}</span>
88
<span class="sf-toolbar-info-piece-additional-detail">
99
<span class="sf-toolbar-label">calls</span>
@@ -37,7 +37,7 @@
3737

3838
{% block menu %}
3939
<span class="label">
40-
<span class="icon">{{ include('@AI/icon.svg', { y: 16 }) }}</span>
40+
<span class="icon">{{ include('@Ai/icon.svg', { y: 16 }) }}</span>
4141
<strong>Symfony AI</strong>
4242
<span class="count">{{ collector.platformCalls|length }}</span>
4343
</span>

0 commit comments

Comments
 (0)