use title for input status by provider

This commit is contained in:
yggverse 2024-11-14 12:57:48 +02:00
parent 9d40e7f01c
commit 41515b0f2b

View File

@ -490,10 +490,9 @@ impl Page {
gemini::client::response::meta::Status::SensitiveInput => {
// Format response
let status = Status::Input;
let title = "Input expected";
let description = match response.data() {
let title = match response.data() {
Some(data) => data.value().as_str(),
None => title,
None => "Input expected",
};
// Toggle input form variant
@ -502,14 +501,14 @@ impl Page {
input.set_new_sensitive(
tab_action,
uri,
Some(description),
Some(title),
Some(1024),
),
_ =>
input.set_new_response(
tab_action,
uri,
Some(description),
Some(title),
Some(1024),
),
}