Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/invite_members/components/user_limit_notification.vue')
-rw-r--r--app/assets/javascripts/invite_members/components/user_limit_notification.vue23
1 files changed, 1 insertions, 22 deletions
diff --git a/app/assets/javascripts/invite_members/components/user_limit_notification.vue b/app/assets/javascripts/invite_members/components/user_limit_notification.vue
index 6c9b1f8e6d0..c3d9d959ef6 100644
--- a/app/assets/javascripts/invite_members/components/user_limit_notification.vue
+++ b/app/assets/javascripts/invite_members/components/user_limit_notification.vue
@@ -8,8 +8,6 @@ import {
REACHED_LIMIT_MESSAGE,
REACHED_LIMIT_UPGRADE_SUGGESTION_MESSAGE,
CLOSE_TO_LIMIT_MESSAGE,
- CLOSE_TO_LIMIT_MESSAGE_PERSONAL_NAMESPACE,
- DANGER_ALERT_TITLE_PERSONAL_NAMESPACE,
} from '../constants';
export default {
@@ -52,13 +50,6 @@ export default {
});
},
dangerAlertTitle() {
- if (this.usersLimitDataset.userNamespace) {
- return sprintf(DANGER_ALERT_TITLE_PERSONAL_NAMESPACE, {
- count: this.freeUsersLimit,
- members: this.pluralMembers(this.freeUsersLimit),
- });
- }
-
return sprintf(DANGER_ALERT_TITLE, {
count: this.freeUsersLimit,
members: this.pluralMembers(this.freeUsersLimit),
@@ -71,20 +62,9 @@ export default {
title() {
return this.reachedLimit ? this.dangerAlertTitle : this.warningAlertTitle;
},
- reachedLimitMessage() {
- if (this.usersLimitDataset.userNamespace) {
- return this.$options.i18n.reachedLimitMessage;
- }
-
- return this.$options.i18n.reachedLimitUpgradeSuggestionMessage;
- },
message() {
if (this.reachedLimit) {
- return this.reachedLimitMessage;
- }
-
- if (this.usersLimitDataset.userNamespace) {
- return this.$options.i18n.closeToLimitMessagePersonalNamespace;
+ return this.$options.i18n.reachedLimitUpgradeSuggestionMessage;
}
return this.$options.i18n.closeToLimitMessage;
@@ -99,7 +79,6 @@ export default {
reachedLimitMessage: REACHED_LIMIT_MESSAGE,
reachedLimitUpgradeSuggestionMessage: REACHED_LIMIT_UPGRADE_SUGGESTION_MESSAGE,
closeToLimitMessage: CLOSE_TO_LIMIT_MESSAGE,
- closeToLimitMessagePersonalNamespace: CLOSE_TO_LIMIT_MESSAGE_PERSONAL_NAMESPACE,
},
};
</script>