Merge pull request #2787 from Mhammad-riyaz/riyaz/query

Fix Error When Clicking on CA Table Row After Viewing Certificate in Certificate Authorities Tab
This commit is contained in:
BlackMagiq
2024-12-25 02:05:27 -08:00
committed by GitHub

View File

@@ -7,7 +7,7 @@ import { TCertificateAuthority } from "./types";
export const caKeys = {
getCaById: (caId: string) => [{ caId }, "ca"],
getCaCerts: (caId: string) => [{ caId }, "ca-cert"],
getCaCerts: (caId: string) => [{ caId }, "ca-certs"],
getCaCrls: (caId: string) => [{ caId }, "ca-crls"],
getCaCert: (caId: string) => [{ caId }, "ca-cert"],
getCaCsr: (caId: string) => [{ caId }, "ca-csr"],