diff --git a/pkg/tui/pages/source_select/source_select.go b/pkg/tui/pages/source_select/source_select.go index e8a6ae37c865..37cc77489b8d 100644 --- a/pkg/tui/pages/source_select/source_select.go +++ b/pkg/tui/pages/source_select/source_select.go @@ -73,7 +73,7 @@ func New(c common.Common) *SourceSelect { OssItem("GCS (Google Cloud Storage)", "Scan a Google Cloud Storage instance."), // Enterprise sources. EnterpriseItem("Artifactory", "Scan JFrog Artifactory packages."), - EnterpriseItem("Azure", "Scan Microsoft Azure repositories."), + EnterpriseItem("Azure Repos", "Scan Microsoft Azure repositories."), EnterpriseItem("BitBucket", "Scan Atlassian's Git-based source code repository hosting service."), EnterpriseItem("Buildkite", "Scan Buildkite, a CI/CD platform."), EnterpriseItem("Confluence", "Scan Atlassian's web-based wiki and knowledge base."), diff --git a/pkg/tui/sources/git/git.go b/pkg/tui/sources/git/git.go index cd9f21d01e93..54e137461672 100644 --- a/pkg/tui/sources/git/git.go +++ b/pkg/tui/sources/git/git.go @@ -15,6 +15,7 @@ func GetFields() gitCmdModel { uri := textinputs.InputConfig{ Label: "Git URI", Key: "uri", + Help: "file:// for local git repos", Required: true, Placeholder: "git@github.com:trufflesecurity/trufflehog.git", }