1 Commits
Author SHA1 Message Date
zemion 46ba69fbfe fix(webui): review committee identifier risk
Module Package Release / publish-packages (push) Successful in 12s
2026-08-24 11:36:34 +02:00
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@govoplan/committee",
"version": "0.1.19",
"version": "0.1.20",
"private": true,
"description": "GovOPlaN Committee platform module seed.",
"type": "module",
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "govoplan-committee"
version = "0.1.19"
version = "0.1.20"
description = "GovOPlaN committee governance and formal-decision integration module."
readme = "README.md"
requires-python = ">=3.12"
+1 -1
View File
@@ -59,7 +59,7 @@ from govoplan_core.db.base import Base
MODULE_ID = "committee"
MODULE_NAME = "Committee"
MODULE_VERSION = "0.1.19"
MODULE_VERSION = "0.1.20"
READ_SCOPE = "committee:workspace:read"
WRITE_SCOPE = "committee:workspace:write"
BALLOT_SCOPE = "committee:ballot:finalize"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@govoplan/committee-webui",
"version": "0.1.19",
"version": "0.1.20",
"private": true,
"type": "module",
"main": "src/index.ts",
@@ -237,7 +237,7 @@ export default function CommitteeRecordDialog({
</FormGrid>
{draft.state === "decided" ? (
<FormField label="Formal Decision ID" documentation={COMMITTEE_FIELD_DOCUMENTATION}>
<input value={draft.decisionId} disabled={busy} onChange={(event) => setDraft({ ...draft, decisionId: event.target.value })} />
<input data-help-risk-reviewed="standard" value={draft.decisionId} disabled={busy} onChange={(event) => setDraft({ ...draft, decisionId: event.target.value })} />
</FormField>
) : null}
</>