This commit is contained in:
Denis Badurina 2026-01-23 15:02:52 +01:00
parent 73734a23a1
commit 09d1b099b7
No known key found for this signature in database
GPG key ID: 839BAEC88E931477
3 changed files with 30 additions and 2 deletions

View file

@ -168,6 +168,11 @@ export class FooterComponent implements Component {
}
}
// Prepend the provider in parenthesis to the right side if there's multiple providers
if (this.footerData.getAvailableProviderCount() > 1 && state.model) {
rightSide = `(${state.model.provider}) ${rightSide}`;
}
let statsLeftWidth = visibleWidth(statsLeft);
const rightSideWidth = visibleWidth(rightSide);