misc: added secret name trimming

This commit is contained in:
Sheen Capadngan
2024-06-27 19:41:00 +08:00
parent 7cdc47cd3a
commit b2d6563994
3 changed files with 3 additions and 3 deletions

View File

@@ -885,7 +885,7 @@ func SetEncryptedSecrets(secretArgs []string, secretType string, environmentName
}
// Key and value from argument
key := splitKeyValueFromArg[0]
key := strings.TrimSpace(splitKeyValueFromArg[0])
value := splitKeyValueFromArg[1]
hashedKey := fmt.Sprintf("%x", sha256.Sum256([]byte(key)))

View File

@@ -11,7 +11,7 @@ import { SecretType, UserWsKeyPair } from "@app/hooks/api/types";
import { PopUpNames, usePopUpAction, usePopUpState } from "../../SecretMainPage.store";
const typeSchema = z.object({
key: z.string(),
key: z.string().trim().min(1, { message: "Secret key is required" }),
value: z.string().optional()
});

View File

@@ -22,7 +22,7 @@ import { DecryptedSecret, SecretType, UserWsKeyPair } from "@app/hooks/api/types
const typeSchema = z
.object({
key: z.string().min(1, "Key is required"),
key: z.string().trim().min(1, "Key is required"),
value: z.string().optional(),
environments: z.record(z.boolean().optional())
})