Skip to content

DF8102: Dock Not Registered ​

Message ​

Dock with id "{id}" is not registered and cannot be updated

Cause ​

ctx.docks.update(view) was called with an id that has no prior registration. update is for mutating existing entries; new entries must go through register.

Fix ​

  • Use ctx.docks.register(view) for new entries.
  • Verify the id matches a previously registered dock — typos / case mismatches are the usual cause.

Source ​

Released under the MIT License.