assistant2: Add support for forking existing profiles (#27627)

This PR adds support for forking existing profiles from the manage
profiles modal.


https://github.com/user-attachments/assets/5fa9b76c-fafe-4c72-8843-576c4b5ca2f2

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-03-27 16:17:42 -04:00 committed by GitHub
parent 12a8b850ef
commit 3b158461be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 283 additions and 39 deletions

View file

@ -74,7 +74,7 @@ pub trait StyledExt: Styled + Sized {
/// Sets `bg()`, `rounded_lg()`, `border()`, `border_color()`, `shadow()`
///
/// Examples: Settings Modal, Channel Management, Wizards/Setup UI, Dialogs
fn elevation_3(self, cx: &mut App) -> Self {
fn elevation_3(self, cx: &App) -> Self {
elevated(self, cx, ElevationIndex::ModalSurface)
}