Skip to content

Commit

Permalink
Remove navigation to edit view in VxgBasicLedPlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
zackatbrightbeam committed Aug 1, 2024
1 parent a20f544 commit 440704a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/VxgBasicLedPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ function VxgBasicLedPlugin (this: any, options: any) {
.reduce((a: any, n: any[]) => ((a[n[0]] = msg.data[n[0]]), a), {})

const item = await seneca.entity(entCanon).save$(data)
navigate('/view/' + name + '/edit/' + item.id)
// TODO: navigate to edit view
// navigate('/view/' + name + '/edit/' + item.id)
navigate('/view/' + name)
}
)

Expand Down

0 comments on commit 440704a

Please sign in to comment.