From 2c97223fb4ef96a5fcb32760686fa6d79b0faac7 Mon Sep 17 00:00:00 2001 From: Albrecht Degering Date: Mon, 24 Aug 2026 11:36:36 +0200 Subject: [PATCH] fix(webui): bind destructive dataflow controls to help --- pyproject.toml | 2 +- src/govoplan_dataflow/__init__.py | 2 +- src/govoplan_dataflow/backend/manifest.py | 2 +- webui/package.json | 2 +- webui/src/features/dataflow/DataflowPage.tsx | 4 ++++ webui/src/features/dataflow/NodeInspector.tsx | 2 ++ 6 files changed, 10 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3371008..90e52e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-dataflow" -version = "0.1.22" +version = "0.1.23" description = "Governed graphical and SQL data pipelines for GovOPlaN." readme = "README.md" requires-python = ">=3.12" diff --git a/src/govoplan_dataflow/__init__.py b/src/govoplan_dataflow/__init__.py index 0b2d542..c35fe37 100644 --- a/src/govoplan_dataflow/__init__.py +++ b/src/govoplan_dataflow/__init__.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "0.1.22" +__version__ = "0.1.23" diff --git a/src/govoplan_dataflow/backend/manifest.py b/src/govoplan_dataflow/backend/manifest.py index 3a295a5..907f256 100644 --- a/src/govoplan_dataflow/backend/manifest.py +++ b/src/govoplan_dataflow/backend/manifest.py @@ -63,7 +63,7 @@ from govoplan_dataflow.backend.german_documentation import ( MODULE_ID = "dataflow" MODULE_NAME = "Dataflow" -MODULE_VERSION = "0.1.22" +MODULE_VERSION = "0.1.23" READ_SCOPE = "dataflow:pipeline:read" WRITE_SCOPE = "dataflow:pipeline:write" diff --git a/webui/package.json b/webui/package.json index ab32594..8a1b53f 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/dataflow-webui", - "version": "0.1.22", + "version": "0.1.23", "private": true, "type": "module", "main": "src/index.ts", diff --git a/webui/src/features/dataflow/DataflowPage.tsx b/webui/src/features/dataflow/DataflowPage.tsx index 3f1bda4..9e09065 100644 --- a/webui/src/features/dataflow/DataflowPage.tsx +++ b/webui/src/features/dataflow/DataflowPage.tsx @@ -816,6 +816,8 @@ export default function DataflowPage({ settings, auth }: { settings: ApiSettings destructiveActions={draft.id ? ( } variant="danger" onClick={() => setDeleteOpen(true)} @@ -2039,6 +2041,8 @@ function DataflowTriggersDialog({ {selected.last_error ? {selected.last_error} : null}