Initial git panel refinements (#21912)

- Wire up settings
- Update static Panel impl
- Tidy up renders

Release Notes:

- N/A
This commit is contained in:
Nate Butler 2024-12-12 09:13:40 -05:00 committed by GitHub
parent 02fbad18ce
commit 8e0ae441f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 157 additions and 21 deletions

View file

@ -463,6 +463,7 @@ fn main() {
call::init(app_state.client.clone(), app_state.user_store.clone(), cx);
notifications::init(app_state.client.clone(), app_state.user_store.clone(), cx);
collab_ui::init(&app_state, cx);
git_ui::init(cx);
vcs_menu::init(cx);
feedback::init(cx);
markdown_preview::init(cx);

View file

@ -3477,6 +3477,7 @@ mod tests {
language::init(cx);
editor::init(cx);
collab_ui::init(&app_state, cx);
git_ui::init(cx);
project_panel::init((), cx);
outline_panel::init((), cx);
terminal_view::init(cx);