Commit dropdown button uses text-overflow (#160834)

This commit is contained in:
Ladislau Szomoru
2022-09-14 20:40:06 +02:00
committed by GitHub
parent b90f14f98f
commit e97b478d06
7 changed files with 40 additions and 32 deletions

View File

@@ -260,10 +260,8 @@ export interface CredentialsProvider {
getCredentials(host: Uri): ProviderResult<Credentials>;
}
export type CommitCommand = Command & { description?: string };
export interface PostCommitCommandsProvider {
getCommands(repository: Repository): CommitCommand[];
getCommands(repository: Repository): Command[];
}
export interface PushErrorHandler {