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/projects/new/components/new_project_url_select.vue')
-rw-r--r--app/assets/javascripts/projects/new/components/new_project_url_select.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/projects/new/components/new_project_url_select.vue b/app/assets/javascripts/projects/new/components/new_project_url_select.vue
index ef2a2aa5526..84a2ddfce07 100644
--- a/app/assets/javascripts/projects/new/components/new_project_url_select.vue
+++ b/app/assets/javascripts/projects/new/components/new_project_url_select.vue
@@ -67,7 +67,7 @@ export default {
}
: this.$options.emptyNameSpace,
shouldSkipQuery: true,
- userNamespaceId: this.userNamespaceId,
+ userNamespaceUniqueId: this.userNamespaceId,
};
},
computed: {
@@ -186,7 +186,7 @@ export default {
{{ group.fullPath }}
</gl-dropdown-item>
</template>
- <template v-if="hasNamespaceMatches && userNamespaceId">
+ <template v-if="hasNamespaceMatches && userNamespaceUniqueId">
<gl-dropdown-section-header>{{ __('Users') }}</gl-dropdown-section-header>
<gl-dropdown-item @click="handleDropdownItemClick(userNamespace)">
{{ userNamespace.fullPath }}
@@ -202,7 +202,7 @@ export default {
:id="inputId"
type="hidden"
:name="inputName"
- :value="selectedNamespace.id || userNamespaceId"
+ :value="selectedNamespace.id || userNamespaceUniqueId"
/>
</gl-button-group>
</template>