Skip to content

Commit

Permalink
Fix incorrect Firmware UUID shown in firmwares list (#1949)
Browse files Browse the repository at this point in the history
Closes #1948
  • Loading branch information
joshk authored Mar 8, 2025
1 parent 34a985c commit 679219e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nerves_hub_web/components/device_page/details.ex
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ defmodule NervesHubWeb.Components.DevicePage.Details do
class="col-start-1 row-start-1 appearance-none border rounded border-zinc-600 bg-zinc-900 py-1.5 pl-3 pr-8 text-sm text-zinc-400 focus:outline focus:outline-1 focus:-outline-offset-1 focus:outline-indigo-500"
>
<option value="">Select a version</option>
<option :for={firmware <- @firmwares} value={firmware.uuid}>{firmware.version} ({String.slice(@device.firmware_metadata.uuid, 0..7)})</option>
<option :for={firmware <- @firmwares} value={firmware.uuid}>{firmware.version} ({String.slice(firmware.uuid, 0..7)})</option>
</select>
</div>
Expand Down

0 comments on commit 679219e

Please sign in to comment.