diff --git a/changelog.md b/changelog.md
index fdf47f4..6c7372a 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,13 @@
# Changelog
+## 2026-04-02 - 12.2.6 - fix(ops-ui)
+improve operations table actions and modal form handling for profiles and network targets
+
+- adds section headings for the Security Profiles and Network Targets views
+- updates edit and delete actions to support in-row table actions in addition to context menus
+- makes create and edit dialogs query forms safely from modal content and adds early returns when forms are unavailable
+- enables the database configuration in the development watch server
+
## 2026-04-02 - 12.2.5 - fix(dcrouter)
sync allowed tunnel edges when merged routes change
diff --git a/test_watch/devserver.ts b/test_watch/devserver.ts
index 8535d73..266cb53 100644
--- a/test_watch/devserver.ts
+++ b/test_watch/devserver.ts
@@ -49,8 +49,7 @@ const devRouter = new DcRouter({
{ clientId: 'admin-desktop', serverDefinedClientTags: ['admin'], description: 'Admin workstation' },
],
},
- // Disable db/mongo for dev
- dbConfig: { enabled: false },
+ dbConfig: { enabled: true },
});
console.log('Starting DcRouter in development mode...');
diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts
index 8fa92a0..a135352 100644
--- a/ts/00_commitinfo_data.ts
+++ b/ts/00_commitinfo_data.ts
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/dcrouter',
- version: '12.2.5',
+ version: '12.2.6',
description: 'A multifaceted routing service handling mail and SMS delivery functions.'
}
diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts
index 8fa92a0..a135352 100644
--- a/ts_web/00_commitinfo_data.ts
+++ b/ts_web/00_commitinfo_data.ts
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/dcrouter',
- version: '12.2.5',
+ version: '12.2.6',
description: 'A multifaceted routing service handling mail and SMS delivery functions.'
}
diff --git a/ts_web/elements/ops-view-networktargets.ts b/ts_web/elements/ops-view-networktargets.ts
index 5f214b3..27e2c24 100644
--- a/ts_web/elements/ops-view-networktargets.ts
+++ b/ts_web/elements/ops-view-networktargets.ts
@@ -64,6 +64,7 @@ export class OpsViewNetworkTargets extends DeesElement {
];
return html`
+