mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
use title for input status by provider
This commit is contained in:
parent
9d40e7f01c
commit
41515b0f2b
1 changed files with 4 additions and 5 deletions
|
|
@ -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),
|
||||
),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue