fix(web): clean dashboard console errors

This commit is contained in:
2026-05-21 22:30:38 +00:00
parent b1a0ce684a
commit befd0efdc0
11 changed files with 57 additions and 22 deletions
+2 -2
View File
@@ -64,7 +64,7 @@ export class CloudlyViewImages extends DeesElement {
{
name: 'edit',
type: ['contextmenu', 'inRow', 'doubleClick'],
iconName: 'penToSquare',
iconName: 'lucide:SquarePen',
actionFunc: async (dataArg: plugins.deesCatalog.ITableActionDataArg<plugins.interfaces.data.ISecretGroup>) => {
const environmentsArray: Array<plugins.interfaces.data.ISecretGroup['data']['environments'][any] & { environment: string; }> = [];
for (const environmentName of Object.keys(dataArg.item.data.environments)) {
@@ -94,7 +94,7 @@ export class CloudlyViewImages extends DeesElement {
},
{
name: 'history',
iconName: 'clockRotateLeft',
iconName: 'lucide:History',
type: ['contextmenu', 'inRow'],
actionFunc: async (dataArg: plugins.deesCatalog.ITableActionDataArg<plugins.interfaces.data.ISecretGroup>) => {
const historyArray: Array<{ environment: string; value: string; }> = [];