Browse Source

fix(repos): Make it clear commit data will be deleted with repo

Jess MacQueen 6 years ago
parent
commit
2519ff13be
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/sentry/static/sentry/app/components/repositoryRow.jsx

+ 3 - 1
src/sentry/static/sentry/app/components/repositoryRow.jsx

@@ -101,7 +101,9 @@ class RepositoryRow extends React.Component {
             <Confirm
               disabled={!hasAccess || (!isActive && repository.status !== 'disabled')}
               onConfirm={this.deleteRepo}
-              message={t('Are you sure you want to remove this repository?')}
+              message={t(
+                'Are you sure you want to remove this repository? All associated commit data will be removed in addition to the repository.'
+              )}
             >
               <Button size="xsmall" icon="icon-trash" disabled={!hasAccess} />
             </Confirm>