From 7a47d30d544fc1a8f0e6e5d6f0047ebd12f44c74 Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Fri, 12 Sep 2025 15:14:20 +0200 Subject: [PATCH] chore: relabel export button This should show that only certs will be exported. --- ui/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/main.rs b/ui/src/main.rs index 1ebd32d..3a34cb9 100644 --- a/ui/src/main.rs +++ b/ui/src/main.rs @@ -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) };