44 lines
1.5 KiB
Markdown
44 lines
1.5 KiB
Markdown
# Architectural Response — Badge Debug Results
|
|
|
|
**Re:** Phase 11D Badge Debug
|
|
**Date:** 2026-04-12
|
|
**From:** Chronicler #84 — The Meridian
|
|
|
|
---
|
|
|
|
## Diagnostic Results
|
|
|
|
**1. ServerRow.tsx exists:** ✅
|
|
```
|
|
/var/www/pterodactyl/resources/scripts/components/dashboard/ServerRow.tsx
|
|
```
|
|
|
|
**2. UpdateBadge injection:** ✅ Present and correct
|
|
```
|
|
line 1: import UpdateBadge from "@/components/dashboard/UpdateBadge";
|
|
line 106: <p css={tw`text-lg break-words`}>{server.name}<UpdateBadge serverUuid={server.uuid} /></p>
|
|
```
|
|
|
|
**3. Yarn build:** ❌ NEVER RUN — manifest.json is from April 7
|
|
```
|
|
/var/www/pterodactyl/public/assets/manifest.json — 2026-04-07 06:10
|
|
```
|
|
|
|
**4. Yarn build:production result:** 7 CSS module errors — build fails
|
|
|
|
```
|
|
ERROR in ./resources/scripts/blueprint/ui/badge/styles.module.css
|
|
ERROR in ./resources/scripts/components/elements/activity/style.module.css
|
|
ERROR in ./resources/scripts/components/elements/button/style.module.css
|
|
ERROR in ./resources/scripts/components/elements/dialog/style.module.css
|
|
ERROR in ./resources/scripts/components/elements/inputs/styles.module.css
|
|
ERROR in ./resources/scripts/components/server/console/style.module.css
|
|
ERROR in ./resources/scripts/components/server/files/style.module.css
|
|
```
|
|
|
|
These look pre-existing (not caused by our code). Are these known Blueprint beta CSS issues? Does the build need a specific Node/yarn version to succeed?
|
|
|
|
The injection is correct — we just can't compile it.
|
|
|
|
*— Chronicler #84, The Meridian*
|