Fix payment settings checkboxes; add expiry date & daily points to server console panel#1
Draft
Copilot wants to merge 7 commits into
Draft
Fix payment settings checkboxes; add expiry date & daily points to server console panel#1Copilot wants to merge 7 commits into
Copilot wants to merge 7 commits into
Conversation
…and payments Co-authored-by: vlssu <43847794+vlssu@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add IDC integration with expiration and payment features
Add IDC integration: server expiry display, points system, redemption codes, store, and payment support
Mar 8, 2026
…ction Co-authored-by: vlssu <43847794+vlssu@users.noreply.github.com>
Copilot
AI
changed the title
Add IDC integration: server expiry display, points system, redemption codes, store, and payment support
IDC store: admin management pages, top-nav store button, resource-based daily points system
Mar 8, 2026
…, server packages Co-authored-by: vlssu <43847794+vlssu@users.noreply.github.com>
Copilot
AI
changed the title
IDC store: admin management pages, top-nav store button, resource-based daily points system
IDC Store: location-based server packages, payment gateway settings, order/ticket management
Mar 8, 2026
…nue-payment button Co-authored-by: vlssu <43847794+vlssu@users.noreply.github.com>
Copilot
AI
changed the title
IDC Store: location-based server packages, payment gateway settings, order/ticket management
IDC store: fix points page crash, per-node daily rates, payment settings styling, resume pending payment
Mar 8, 2026
Co-authored-by: vlssu <43847794+vlssu@users.noreply.github.com>
Co-authored-by: vlssu <43847794+vlssu@users.noreply.github.com>
Copilot
AI
changed the title
IDC store: fix points page crash, per-node daily rates, payment settings styling, resume pending payment
Fix payment settings checkboxes; add expiry date & daily points to server console panel
Mar 8, 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.
AdminLTE's box-widget JS intercepted click events inside nested collapsible boxes, making the payment-method enable checkboxes unresponsive. The server console status panel was also missing the expiry date and daily points cost that are already available from the API transformer.
Payment settings – checkbox fix
Replaced the three nested
box box-info/warning/success+data-widget="collapse"structures withcalloutdividers separated by<hr>. Callouts are purely decorative (no JS), so no widget code can intercept checkbox clicks.Server console – new stat blocks (
ServerDetailsBlock.tsx)Added two conditional
StatBlockentries appended after the existing seven:server.expiresAtserver.pointsPerDay{n} 积分/天The
stat_blockCSS (lg:col-span-6) already stacks each block to a full row in the narrow side panel on large screens, so no layout changes were needed.Both fields (
expires_at,points_per_day) are already emitted byServerTransformerand mapped inrawDataToServerObject; no backend changes required.🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.