-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Pm 28182 add success page #17814
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Pm 28182 add success page #17814
Conversation
|
Claude finished @bmbitwarden's task —— View job Code Review Complete ✅I've completed a comprehensive review of PR #17814. Overall, the implementation is solid and adds the requested success page functionality. However, there are several issues that should be addressed before merging. 🔴 Critical Issues1. Remove FIXME commentFile: The FIXME comment should be removed as requested in the review feedback. The functionality has now been implemented with // FIXME: Display success dialog with link - Remove this comment2. Async initialization race conditionFile: Calling Fix: Move async initialization to async ngOnInit() {
await this.initLink();
}
// Remove from constructor3. Missing error handlingFile: No error handling for environment service failures. If Fix: Add try-catch block with user-facing error notification: private async initLink() {
try {
const env = await firstValueFrom(this.environmentService.environment$);
this.sendLink.set(env.getSendUrl() + this.send.accessId + "/" + this.send.urlB64Key);
} catch (error) {
this.toastService.showToast({
variant: "error",
title: this.i18nService.t("errorOccurred"),
message: this.i18nService.t("unexpectedError"),
});
}
}
|
|
Great job! No new security vulnerabilities introduced in this pull request |
mcamirault
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good overall, one discussion to be had regarding the message we show

🎟️ Tracking
https://bitwarden.atlassian.net/browse/PM-28182
📔 Objective
After creating a send, we would like to show a success status, where the user can easily copy the send link.
📸 Screenshots
⏰ Reminders before review
🦮 Reviewer guidelines
:+1:) or similar for great changes:memo:) or ℹ️ (:information_source:) for notes or general info:question:) for questions:thinking:) or 💭 (:thought_balloon:) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion:art:) for suggestions / improvements:x:) or:warning:) for more significant problems or concerns needing attention:seedling:) or ♻️ (:recycle:) for future improvements or indications of technical debt:pick:) for minor or nitpick changes