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:
@@ -1,8 +1,8 @@
|
||||
use warp_core::ui::theme::Fill;
|
||||
use warpui_core::{Action, AppContext, Element};
|
||||
use ordered_float::OrderedFloat;
|
||||
use warp_core::ui::appearance::Appearance;
|
||||
use warp_core::ui::theme::Fill;
|
||||
use warpui_core::fonts::FamilyId;
|
||||
use warpui_core::{Action, AppContext, Element};
|
||||
|
||||
use super::result_renderer::ItemHighlightState;
|
||||
|
||||
|
||||
@@ -7,11 +7,11 @@ use std::time::Duration;
|
||||
use async_channel::Sender;
|
||||
use async_trait::async_trait;
|
||||
use futures_util::stream::AbortHandle;
|
||||
use warpui_core::r#async::Timer;
|
||||
use warpui_core::{Action, AppContext, Entity, ModelContext};
|
||||
use itertools::Itertools;
|
||||
use warp_core::r#async::debounce;
|
||||
use warp_core::send_telemetry_from_ctx;
|
||||
use warpui_core::r#async::Timer;
|
||||
use warpui_core::{Action, AppContext, Entity, ModelContext};
|
||||
|
||||
use super::data_source::{Query, QueryFilter, QueryResult};
|
||||
use crate::telemetry::TelemetryEvent;
|
||||
|
||||
@@ -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