Merge pull request #4551 from cli/jg/fix-git-status

codespace: fix Git status fields to snake case
This commit is contained in:
Jose Garcia 2021-10-18 11:21:36 -04:00 committed by GitHub
commit b5139298ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -155,8 +155,8 @@ type CodespaceGitStatus struct {
Ahead int `json:"ahead"`
Behind int `json:"behind"`
Ref string `json:"ref"`
HasUnpushedChanges bool `json:"hasUnpushedChanges"`
HasUncommitedChanges bool `json:"hasUncommitedChanges"`
HasUnpushedChanges bool `json:"has_unpushed_changes"`
HasUncommitedChanges bool `json:"has_uncommited_changes"`
}
const (