Open
Conversation
Bug 1: Fix media upload URL — change /v1/media to /api/media in MediaUploadZone.vue and Media/Index.vue (all fetch/XHR calls). Bug 2: Fix Knowledge Graph 401 — add credentials: same-origin and X-XSRF-TOKEN header to fetch in KnowledgeGraphViewer.vue so Sanctum session auth works. Bug 3: Fix Locales page — route now passes locales and supported props via LocaleService instead of rendering with empty props. Bug 4: Fix Plugins page — route now queries Plugin model and passes PluginResource collection as props instead of empty array. Bug 5: Fix Chat FAB overlap — use v-show="!isOpen" on the FAB button to hide it completely when sidebar is open, preventing overlap with input area.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes 5 production UI bugs found in the admin interface.
Bug Fixes
Bug 1: Media Upload — Wrong URL
resources/js/Components/Media/MediaUploadZone.vue+resources/js/Pages/Media/Index.vue/v1/media→/api/mediaand/api/v1/media→/api/mediaacross all media fetch/XHR callsBug 2: Knowledge Graph 401 — Missing Auth
resources/js/Components/Graph/KnowledgeGraphViewer.vuecredentials: 'same-origin'andX-XSRF-TOKENheader for Sanctum session authBug 3: Languages Page — No Locales Loaded
routes/web.phplocalesandsupportedInertia props via LocaleServiceBug 4: Plugins Page — Empty
routes/web.phpBug 5: Chat Sidebar FAB Overlaps Input
resources/js/Components/Chat/ChatSidebar.vuev-show="!isOpen"to hide completely when sidebar is openQuality Gates
vendor/bin/pint --test— PASSvendor/bin/phpstan analyse— No new errors in changed filesnpm run build— PASS