Skip to content

Commit 5c5e783

Browse files
authored
Update Dbgr.php
fix paths of new Tracy assets
1 parent 1741beb commit 5c5e783

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Dbgr.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,13 +1050,13 @@ private static function getStyles(): string
10501050
$styles = '';
10511051
$path = __DIR__ . DIRECTORY_SEPARATOR;
10521052
$styles .= '<style>';
1053-
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/assets/Toggle/toggle.css');
1054-
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/assets/Dumper/dumper.css');
1053+
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/Toggle/toggle.css');
1054+
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/Dumper/assets/dumper.css');
10551055
$styles .= FileSystem::read($path . 'dumper.css');
10561056
$styles .= '</style>';
10571057
$styles .= '<script>';
1058-
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/assets/Toggle/toggle.js');
1059-
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/assets/Dumper/dumper.js');
1058+
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/Toggle/toggle.js');
1059+
$styles .= FileSystem::read(self::$rootDir . 'vendor/tracy/tracy/src/Tracy/Dumper/assets/dumper.js');
10601060
$styles .= FileSystem::read($path . 'dumper.js');
10611061
$styles .= '</script>';
10621062

0 commit comments

Comments
 (0)