Fix cursor focus and selection in input box, add AWS env var warning box, and remove AWS Bedrock login banner
This commit is contained in:
@@ -8,7 +8,6 @@ use std::time::Duration;
|
||||
|
||||
use anyhow::Context;
|
||||
use futures::FutureExt as _;
|
||||
use warpui_core::r#async::{block_on, executor::Background, Timer};
|
||||
use instant::Instant;
|
||||
use itertools::Itertools;
|
||||
use parking_lot::{Mutex, RwLock};
|
||||
@@ -592,7 +591,7 @@ impl SearcherWriterWrapper {
|
||||
.iter()
|
||||
.filter(|(name, _)| self.id_field_names.contains(*name))
|
||||
.collect();
|
||||
id_pairs.sort_by(|(a, _), (b, _)| a.cmp(b));
|
||||
id_pairs.sort_by_key(|(a, _)| *a);
|
||||
|
||||
let mut hasher = Sha256::new();
|
||||
// Add each field-value pair to the hasher in sorted order
|
||||
|
||||
Reference in New Issue
Block a user