Skip to content

Commit

Permalink
Fixed button order
Browse files Browse the repository at this point in the history
  • Loading branch information
RBFraphael committed Mar 5, 2024
1 parent 883280c commit 4799766
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/src/src/components/database/Redis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ export default function Redis()
) }
{ status == "running" && (
<>
<button className="btn btn-sm btn-primary px-5" onClick={openRedisGui}>
<FontAwesomeIcon icon={faSquareUpRight} fixedWidth /> Browse
</button>
<button className="btn btn-sm btn-danger px-5" onClick={stopRedis}>
<FontAwesomeIcon icon={faStop} fixedWidth /> Stop
</button>
<button className="btn btn-sm btn-primary px-5" onClick={openRedisGui}>
<FontAwesomeIcon icon={faSquareUpRight} fixedWidth /> Browse
</button>
</>
) }
</div>
Expand Down

0 comments on commit 4799766

Please sign in to comment.