fix(webui): review committee identifier risk
Module Package Release / publish-packages (push) Successful in 12s
Module Package Release / publish-packages (push) Successful in 12s
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@govoplan/committee",
|
"name": "@govoplan/committee",
|
||||||
"version": "0.1.19",
|
"version": "0.1.20",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "GovOPlaN Committee platform module seed.",
|
"description": "GovOPlaN Committee platform module seed.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "govoplan-committee"
|
name = "govoplan-committee"
|
||||||
version = "0.1.19"
|
version = "0.1.20"
|
||||||
description = "GovOPlaN committee governance and formal-decision integration module."
|
description = "GovOPlaN committee governance and formal-decision integration module."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ from govoplan_core.db.base import Base
|
|||||||
|
|
||||||
MODULE_ID = "committee"
|
MODULE_ID = "committee"
|
||||||
MODULE_NAME = "Committee"
|
MODULE_NAME = "Committee"
|
||||||
MODULE_VERSION = "0.1.19"
|
MODULE_VERSION = "0.1.20"
|
||||||
READ_SCOPE = "committee:workspace:read"
|
READ_SCOPE = "committee:workspace:read"
|
||||||
WRITE_SCOPE = "committee:workspace:write"
|
WRITE_SCOPE = "committee:workspace:write"
|
||||||
BALLOT_SCOPE = "committee:ballot:finalize"
|
BALLOT_SCOPE = "committee:ballot:finalize"
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@govoplan/committee-webui",
|
"name": "@govoplan/committee-webui",
|
||||||
"version": "0.1.19",
|
"version": "0.1.20",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "src/index.ts",
|
"main": "src/index.ts",
|
||||||
|
|||||||
@@ -237,7 +237,7 @@ export default function CommitteeRecordDialog({
|
|||||||
</FormGrid>
|
</FormGrid>
|
||||||
{draft.state === "decided" ? (
|
{draft.state === "decided" ? (
|
||||||
<FormField label="Formal Decision ID" documentation={COMMITTEE_FIELD_DOCUMENTATION}>
|
<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>
|
</FormField>
|
||||||
) : null}
|
) : null}
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user