mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-15 20:35:23 +03:00
bold label for downloaded firmwares
This commit is contained in:
parent
bd1dbf21d0
commit
caef8dbf3c
1 changed files with 6 additions and 1 deletions
|
@ -210,7 +210,12 @@ TABS.firmware_flasher.initialize = function (callback) {
|
||||||
descriptor.target,
|
descriptor.target,
|
||||||
descriptor.date,
|
descriptor.date,
|
||||||
descriptor.status
|
descriptor.status
|
||||||
)).data('summary', descriptor);
|
))
|
||||||
|
.css("font-weight", FirmwareCache.has(descriptor)
|
||||||
|
? "bold"
|
||||||
|
: null
|
||||||
|
)
|
||||||
|
.data('summary', descriptor);
|
||||||
|
|
||||||
versions_e.append(select_e);
|
versions_e.append(select_e);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue