You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampark.apache.org by be...@apache.org on 2022/11/17 03:56:28 UTC

[incubator-streampark] branch dev updated: [Fix] application conf bug (#2035)

This is an automated email from the ASF dual-hosted git repository.

benjobs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git


The following commit(s) were added to refs/heads/dev by this push:
     new 8d30879da [Fix] application conf bug (#2035)
8d30879da is described below

commit 8d30879daa7631a994d2817204718b6f8bc030cf
Author: WSZ <wa...@outlook.com>
AuthorDate: Thu Nov 17 11:56:24 2022 +0800

    [Fix] application conf bug (#2035)
---
 .../src/views/flink/app/hooks/useFlinkRender.tsx                        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streampark-console/streampark-console-webapp/src/views/flink/app/hooks/useFlinkRender.tsx b/streampark-console/streampark-console-webapp/src/views/flink/app/hooks/useFlinkRender.tsx
index a6925f69b..f35131393 100644
--- a/streampark-console/streampark-console-webapp/src/views/flink/app/hooks/useFlinkRender.tsx
+++ b/streampark-console/streampark-console-webapp/src/views/flink/app/hooks/useFlinkRender.tsx
@@ -289,7 +289,7 @@ export const renderIsSetConfig = (
   /* Open the sqlConf drawer */
   async function handleSQLConf(checked: boolean) {
     if (checked) {
-      if (unref(model.configOverride) != null) {
+      if (unref(model.configOverride)) {
         openConfDrawer(true, {
           configOverride: unref(model.configOverride),
         });