Skip to content

Commit

Permalink
[desktop]: Fix snoop devices sent on Sequencer
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagohm committed Jul 6, 2024
1 parent 7df0ef1 commit 0d70f6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions desktop/src/app/sequencer/sequencer.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,12 @@ export class SequencerComponent implements AfterContentInit, OnDestroy, Pingable
savePlan() {
const sequencerPreference = this.preference.sequencerPreference.get()
sequencerPreference.savedPath = this.savedPath
this.plan.camera = this.camera?.id
this.plan.mount = this.mount?.id
this.plan.wheel = this.wheel?.id
this.plan.focuser = this.focuser?.id
this.plan.rotator = this.rotator?.id
Object.assign(sequencerPreference.plan, this.plan)
sequencerPreference.plan.camera = this.camera?.id
sequencerPreference.plan.mount = this.mount?.id
sequencerPreference.plan.wheel = this.wheel?.id
sequencerPreference.plan.focuser = this.focuser?.id
sequencerPreference.plan.rotator = this.rotator?.id
this.preference.sequencerPreference.set(sequencerPreference)
}

Expand Down

0 comments on commit 0d70f6e

Please sign in to comment.