Skip to content

Commit c9c91f3

Browse files
authored
Change button to outlined and update version / changelog (#58)
1 parent 2900550 commit c9c91f3

File tree

7 files changed

+156
-95
lines changed

7 files changed

+156
-95
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.5.6] — 2025-06-24
6+
7+
### Changed
8+
9+
- Fixed white theme button disappearing issue
10+
511
## [0.5.4] — 2025-06-12
612

713
### Changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
IMAGE?=localstack/localstack-docker-desktop
2-
TAG?=0.5.5
2+
TAG?=0.5.6
33

44
BUILDER=buildx-multi-arch
55

ui/src/components/Feedback/ConfirmableButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export const ConfirmableButton = ({
7979
<Button
8080
autoFocus
8181
color= {okColor || 'error'}
82-
variant='contained'
82+
variant='outlined'
8383
onClick={(event: MouseEvent<HTMLButtonElement>) => {
8484
if (rest.onClick) rest.onClick(event as any); // eslint-disable-line
8585
setShowConfirmDialog(false);

ui/src/components/Header/Controller.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export const Controller = (): ReactElement => {
174174
<ButtonGroup variant='outlined'>
175175
{(isRunning && !isStarting) ?
176176
<ProgressButton
177-
variant='contained'
177+
variant='outlined'
178178
loading={isStopping}
179179
onClick={stop}
180180
startIcon={<Stop />}>
@@ -196,7 +196,7 @@ export const Controller = (): ReactElement => {
196196
</FormControl>
197197
<Box>
198198
<ProgressButton
199-
variant='contained'
199+
variant='outlined'
200200
loading={isStarting}
201201
onClick={start}
202202
startIcon={<PlayArrow />}>

ui/src/components/Views/Configs/ConfigPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ export const ConfigPage = (): ReactElement => {
7777
<ButtonGroup className={classes.addButton}>
7878
<Button
7979
endIcon={<AddIcon />}
80-
variant='contained'
80+
variant='outlined'
8181
onClick={() => openModalSetup()}
8282
>
8383
New
8484
</Button>
85-
<Button onClick={() => mountPoint.setMountPointData({ ...mountPoint, showForm: true })}>
85+
<Button variant='outlined' onClick={() => mountPoint.setMountPointData({ ...mountPoint, showForm: true })}>
8686
Change mount point
8787
</Button>
8888
</ButtonGroup>

0 commit comments

Comments
 (0)