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:
2026-07-02 14:54:15 -05:00
parent 4770ac06b5
commit 3769646ca6
1194 changed files with 5312 additions and 8032 deletions
+7 -9
View File
@@ -7,18 +7,14 @@ use anyhow::Result;
use async_trait::async_trait;
use chrono::{Duration, Utc};
use derivative::Derivative;
use galaxy_core::{channel::Channel, features::FeatureFlag};
use galaxy_graphql::{
queries::get_updated_cloud_objects::UpdatedObjectInput, scalars::time::ServerTimestamp,
};
use galaxyui::{AppContext, SingletonEntity};
use lazy_static::lazy_static;
use regex::Regex;
use url::Url;
use galaxy_core::channel::Channel;
use galaxy_core::features::FeatureFlag;
use galaxy_graphql::queries::get_updated_cloud_objects::UpdatedObjectInput;
use galaxy_graphql::scalars::time::ServerTimestamp;
use galaxyui::{AppContext, SingletonEntity};
use lazy_static::lazy_static;
use regex::Regex;
use url::Url;
use self::breadcrumbs::ContainingObject;
use self::model::actions::ObjectActions;
@@ -30,7 +26,9 @@ use crate::appearance::Appearance;
use crate::auth::UserUid;
use crate::channel::ChannelState;
use crate::drive::items::WarpDriveItem;
use crate::drive::{CloudObjectTypeAndId, OpenWarpDriveObjectArgs, OpenWarpDriveObjectSettings};
use crate::drive::{
CloudObjectTypeAndId, OpenGalaxyDriveObjectArgs, OpenGalaxyDriveObjectSettings,
};
use crate::persistence::ModelEvent;
use crate::server::cloud_objects::update_manager::InitiatedBy;
use crate::server::ids::{HashableId, HashedSqliteId, ObjectUid, ServerId, SyncId, ToServerId};