Skip to content

Commit

Permalink
Changed button order
Browse files Browse the repository at this point in the history
  • Loading branch information
jLynx committed Feb 16, 2024
1 parent 7e5aeb2 commit c8177d3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/Controller/Controller.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -603,6 +603,13 @@ const Controller = () => {
</div>

<p className="mt-3">Select from the available options:</p>
<button
onClick={() => flashLatestNightlyFirmware()}
disabled={disableTransmitAction}
className="rounded bg-blue-400 p-2 text-white disabled:opacity-50"
>
Update to latest stable release
</button>
<button
disabled={disableTransmitAction}
onClick={() => flashLatestNightlyFirmware()}
Expand All @@ -620,13 +627,6 @@ const Controller = () => {
>
Flash custom firmware
</button>
<button
onClick={() => flashLatestNightlyFirmware()}
disabled={disableTransmitAction}
className="rounded bg-blue-400 p-2 text-white disabled:opacity-50"
>
Update to latest stable release
</button>
<p>{updateStatus}</p>
</div>
)}
Expand Down

0 comments on commit c8177d3

Please sign in to comment.