diff --git a/apps/web/app/versions/page.tsx b/apps/web/app/versions/page.tsx index 066ea38..5417281 100644 --- a/apps/web/app/versions/page.tsx +++ b/apps/web/app/versions/page.tsx @@ -595,7 +595,7 @@ function NewVersionModal({ overview, onClose, onCreate, currentUserName }: NewVe const [projectName, setProjectName] = useState(''); const [iterationType, setIterationType] = useState(''); const [versionNumber, setVersionNumber] = useState(''); - const [status, setStatus] = useState('planned'); + const [status] = useState('developing'); const [priority, setPriority] = useState('P2'); const [expectedReleaseDate, setExpectedReleaseDate] = useState(''); const [submitting, setSubmitting] = useState(false); @@ -712,19 +712,7 @@ function NewVersionModal({ overview, onClose, onCreate, currentUserName }: NewVe {/* 状态 */} -
- -
- {([ - { key: 'planned' as VersionStatus, label: '规划中' }, - { key: 'developing' as VersionStatus, label: '开发中' }, - ]).map((opt) => ( - - ))} -
-
+ {/* 优先级 */}