-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Implement Duplicate Rack Functionality (β Sandbox Passed) #104
Conversation
Sandbox Executions
Check src/app/components/rack-parts/rack-detail-data.service.ts with contents:
Check src/app/components/rack-parts/rack-details/rack-details.component.ts with contents: |
Apply Sweep Rules to your PR?
|
this.manageSub( | ||
this.requestRackEditableStatusChange$ | ||
.pipe( | ||
requestRackDuplication$ = new Subject<RackMinimal>(); |
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.
This declaration is can't be done here
@@ -84,6 +92,14 @@ export class RackDetailDataService extends SubManager { | |||
this.singleRackData$.pipe( | |||
tap(x => this.rowedRackedModules$.next(null)), | |||
filter(x => !!x), | |||
this.manageSub( | |||
this.requestRackDuplication$ | |||
.pipe(switchMap(rack => this.duplicateRack(rack))) |
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.
this.duplicateRack(rack) function is not declrared anywhere
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.
fix
this.duplicateRack(rack) function is not declrared anywhere |
1 similar comment
this.duplicateRack(rack) function is not declrared anywhere |
PR Feedback: π
Description
This pull request implements the Duplicate Rack functionality in the RackDetailDataService.
Summary
Fixes #103.
π Latest improvements to Sweep:
π‘ To get Sweep to edit this pull request, you can: