Skip to content

Commit 386e438

Browse files
authored
Merge pull request #455 from Seluj78/441-bio-min-char
2 parents 98b026e + a0f636b commit 386e438

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

frontend/src/components/app/onboarding/MainAndSecondaryImagesUpload.vue

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@ export default {
5656
} else {
5757
await this.$http.post('/profile/images?is_primary=false', formData);
5858
}
59-
} catch (error) {
60-
console.log(error);
61-
}
59+
} catch (error) {}
6260
}
6361
},
6462
},
@@ -73,7 +71,10 @@ export default {
7371
if (this.imagesUploaded.length === this.imageIndex) {
7472
return 'Continue';
7573
}
76-
return 'Skip';
74+
if (this.imageIndex === 1) {
75+
return 'Skip';
76+
}
77+
return 'No more';
7778
},
7879
},
7980
};

frontend/src/components/app/onboarding/Textblock.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<h1 class="text-gray-matcha">{{slide.current}} / {{slide.count}}</h1>
55
<h1 class="onboarding-sub-container-content-heading leading-none">Bio</h1>
66
<p class="mt-2 text-gray-matcha">{{textareaLength}} / {{slide.maxTextareaLength}}</p>
7+
<p class="mt-1 text-gray-matcha text-xs">Minimum {{slide.minTextareaLength}}</p>
78
<div class="h-64 flex flex-col items-center justify-center w-full">
89
<textarea
910
autofocus

0 commit comments

Comments
 (0)