fix(web): show pending review toast for non-admin skill publish#86
Merged
fix(web): show pending review toast for non-admin skill publish#86
Conversation
Non-admin users now see "Submitted for Review" instead of "Published Successfully" after uploading a skill, based on the status returned by the backend.
dongmucat
approved these changes
Mar 18, 2026
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.
Problem
When a non-admin user uploads a skill, the toast always shows "Published Successfully". This is misleading because non-admin users' skills require admin review before being published.
Root Cause
The frontend publish handler did not check the
statusfield in the backend response. The backend correctly returnsPENDING_REVIEWfor non-admin users andPUBLISHEDfor admins, but the toast always displayed the same message.Fix
Check
result.statusafter publish and show the appropriate toast:PUBLISHED: "Published Successfully" / "发布成功"PENDING_REVIEW: "Submitted for Review" / "已提交审核"Files Changed
web/src/pages/dashboard/publish.tsx— branch toast by statusweb/src/i18n/locales/en.json— add published/pending review i18n keysweb/src/i18n/locales/zh.json— add published/pending review i18n keys