Skip to content

Commit e162b80

Browse files
authored
Fix for no color for Informational requests
I define a color for Informational requests in the chart header. To keep it simple I use inline CSS. Closes #12
1 parent 6a62bdb commit e162b80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/livewire/requests-graph.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div class="flex flex-wrap gap-4">
1010
@if ($config['record_informational'])
1111
<div class="flex items-center gap-2 text-xs text-gray-600 dark:text-gray-400 font-medium">
12-
<div class="h-0.5 w-3 rounded-full bg-[rgba(29,153,172,0.5)]"></div>
12+
<div class="h-0.5 w-3 rounded-full" style="background-color: rgba(29,153,172,0.5)"></div>
1313
Informational
1414
</div>
1515
@endif

0 commit comments

Comments
 (0)