From 833152367911fdca3726e073e1f77c54c9562495 Mon Sep 17 00:00:00 2001 From: Gareth Dawson Date: Mon, 2 Oct 2023 11:36:51 +0100 Subject: [PATCH] Postgres: Make securejson password optional (#75801) make securejson password optional --- public/app/plugins/datasource/postgres/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/postgres/types.ts b/public/app/plugins/datasource/postgres/types.ts index b1993310eec..bc744f6c9a6 100644 --- a/public/app/plugins/datasource/postgres/types.ts +++ b/public/app/plugins/datasource/postgres/types.ts @@ -23,5 +23,5 @@ export interface PostgresOptions extends SQLOptions { } export interface SecureJsonData { - password: string; + password?: string; }