fix(remoteingress): mark remote ingress data actions as row actions and bump @design.estate/dees-catalog dependency

This commit is contained in:
2026-02-16 17:47:43 +00:00
parent 21157477b4
commit 0b09ea1573
6 changed files with 79 additions and 118 deletions

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/dcrouter',
version: '6.4.4',
version: '6.4.5',
description: 'A multifaceted routing service handling mail and SMS delivery functions.'
}

View File

@@ -195,6 +195,7 @@ export class OpsViewRemoteIngress extends DeesElement {
{
name: 'Regenerate Secret',
iconName: 'lucide:key',
type: ['row'],
action: async (edge: interfaces.data.IRemoteIngress) => {
await appstate.remoteIngressStatePart.dispatchAction(
appstate.regenerateRemoteIngressSecretAction,
@@ -205,6 +206,7 @@ export class OpsViewRemoteIngress extends DeesElement {
{
name: 'Delete',
iconName: 'lucide:trash2',
type: ['row'],
action: async (edge: interfaces.data.IRemoteIngress) => {
await appstate.remoteIngressStatePart.dispatchAction(
appstate.deleteRemoteIngressAction,