Skip to content

Commit

Permalink
Show kube cluster name at the beginning of kube tabs (#50390)
Browse files Browse the repository at this point in the history
  • Loading branch information
gzdunek authored Dec 19, 2024
1 parent 5722b8b commit 2cc9522
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ export class DocumentsService {
if (doc.kind === 'doc.gateway_kube') {
const { params } = routing.parseKubeUri(doc.targetUri);
this.update(doc.uri, {
title: [shellBinName, cwd, params.kubeId].filter(Boolean).join(' · '),
title: [params.kubeId, shellBinName].filter(Boolean).join(' · '),
});
}
}
Expand Down

0 comments on commit 2cc9522

Please sign in to comment.