mirror of
https://github.com/pelican-dev/panel.git
synced 2026-07-16 04:03:50 +03:00
Source of custom Logo and Favicon not consistently set? #472
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Mawiguk0 on GitHub (Oct 17, 2025).
Current Behavior
I discovered that the logo src is not set consistently througout the panel.
When examining the nodes/servers the logo src is relative to the current path.
404 GET | https://panel.example.de/admin/servers/16/.png
Same happens for the favicon
Expected Behavior
The src to the logo should be static
404 GET | https://panel.example.de/.png
Steps to Reproduce
See in Browser Console
404 GET | https://panel.example.de/admin/servers/16/.png
Panel Version
1.0.0-beta26
Wings Version
wings v1.0.0-beta18
Games and/or Eggs Affected
No response
Docker Image
No response
Error Logs
Is there an existing issue for this?
@rmartinoscar commented on GitHub (Oct 17, 2025):
Hey the link is relative so you need to put a / in front otherwise its just gonna add the link at the end of the current url.
Example
favicon.ico => https://demo.pelican.dev/favicon.ico => https://demo.pelican.dev/admin/servers/16/favicon.ico
/favicon.ico => https://demo.pelican.dev/favicon.ico => https://demo.pelican.dev/favicon.ico
@Mawiguk0 commented on GitHub (Oct 18, 2025):
What a simple yet helpful answer! Thank you!