Fix adding new git repos to a project (#24471)

Release Notes:

- N/A
This commit is contained in:
Conrad Irwin 2025-02-07 13:08:09 -07:00 committed by GitHub
parent ead5a836a1
commit 7148092e12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 21 additions and 5 deletions

View file

@ -1243,7 +1243,11 @@ impl GitPanel {
.child(
v_flex()
.gap_3()
.child("No changes to commit")
.child(if self.active_repository.is_some() {
"No changes to commit"
} else {
"No Git repositories"
})
.text_ui_sm(cx)
.mx_auto()
.text_color(Color::Placeholder.color(cx)),