feat(dev-preview): convert restart button to icon-only in ConsoleDrawer#3422
Merged
gregpriday merged 2 commits intodevelopfrom Mar 16, 2026
Merged
Conversation
- Replace shadcn Button with plain button element for icon-only styling - Remove visible "Restart" text label, keeping only RotateCw icon - Apply compact toolbar-consistent styles (p-1.5, rounded, hover:bg-overlay-medium) - Move animate-spin from icon to button element matching DevPreviewToolbar pattern - Remove unused Button import from @/components/ui/button
- Verify restart button has no visible text content - Confirm SVG icon is present inside the button element
Collaborator
Author
This was referenced Mar 16, 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.
Summary
<Button>restart control inConsoleDrawerfooter with a compact icon-only button matching the pattern used inDevPreviewToolbarResolves #3418
Changes
src/components/DevPreview/ConsoleDrawer.tsx: swapped<Button>with a plain<button>element styled as an icon control; removed the<span>Restart</span>labelsrc/components/DevPreview/__tests__/ConsoleDrawer.test.tsx: added assertion confirming no visible "Restart" text label is rendered in the footerTesting
Unit test added and passing. The restart button now renders icon-only, consistent with the toolbar restart button. Tooltip and state behaviour verified against the existing test suite.