diff --git a/vue3/src/pages/RecipeImportPage.vue b/vue3/src/pages/RecipeImportPage.vue
index abca816d7..ada591d87 100644
--- a/vue3/src/pages/RecipeImportPage.vue
+++ b/vue3/src/pages/RecipeImportPage.vue
@@ -32,10 +32,9 @@
{{ $t('Duplicate') }}
{{ $t('DuplicateFoundInfo') }}
-
- {{ r.name }}
-
- {{ $t('Continue') }}
+
+ {{ r.name }} (#{{r.id}})
+
@@ -187,7 +186,10 @@
Zurück
- {{$t('Next')}}
+ {{$t('Import')}}
+
+ {{stepper == '1' ? $t('Edit') : $t('Next')}}
+
{{$t('Import')}}
@@ -237,10 +239,6 @@ function loadRecipeFromUrl() {
loading.value = true
api.apiRecipeFromSourceCreate({recipeFromSource: {url: importUrl.value}}).then(r => {
importResponse.value = r
- if (r.duplicates.length == 0) {
- // automatically continue only if no duplicates were found
- stepper.value = "2"
- }
}).catch(err => {
useMessageStore().addError(ErrorMessageType.FETCH_ERROR, err)
}).finally(() => {