1
0
mirror of https://github.com/pcvolkmer/cert-tools.git synced 2025-09-13 03:02:51 +00:00

chore: relabel export button

This should show that only certs will be exported.
This commit is contained in:
2025-09-12 15:14:20 +02:00
parent a115b8fee6
commit 7a47d30d54

View File

@@ -430,9 +430,9 @@ impl Ui {
let export_button = if !(self.chain_indicator_state == IndicatorState::Success
|| self.chain_indicator_state == IndicatorState::Cleaned)
{
button("Export PEM").style(button::primary)
button("Export cert(s) as PEM").style(button::primary)
} else {
button("Export PEM")
button("Export cert(s) as PEM")
.on_press(Message::PickExportFile)
.style(button::primary)
};