Vote #77648
完了Don't show "status" field when creating a new version
0%
説明
When creating a new version from within the issue form field with the modal dialogue, the "status" option should be hidden.
It makes no sense to set this newly created version to "closed" or "locked" because then, it isn't selectable from the isuee form field.
Defect duplicate of Feature #21416 as Feature request don't get ANY attention by the Redmine team.
And in fact, this one here could also be called a bug instead of a feature...
journals
I agree, this option makes no sense here.
A quick fix for your instance, if this is causing user issues would be to hide it via CSS
Add to your theme application.css:
<pre><code class="css">
/* Hide version status selection in version create dialog */
.ui-dialog .new_version p:nth-child(3) {
display: none;
}
</code></pre>
--------------------------------------------------------------------------------
Hi Jake,
thanks for the smooth workaround. Werks very well!
--------------------------------------------------------------------------------
I made a patch that fixes/implements this without CSS.
The patch passes all the tests and adds two new assertions:
# new version form doesn't contains the status field
# edit version form contains the status field.
--------------------------------------------------------------------------------
Tobias Fischer wrote:
> When creating a new version from within the issue form field with the modal dialogue, the "status" option should be hidden.
> It makes no sense to set this newly created version to "closed" or "locked" because then, it isn't selectable from the isuee form field.
In my opinion it makes no sense in all pages from where you can add new versions, not only in the modal dialogue. I think there are very few cases when you want to add a locked/closed version.
--------------------------------------------------------------------------------
Marius BALTEANU wrote:
> In my opinion it makes no sense in all pages from where you can add new versions, not only in the modal dialogue. I think there are very few cases when you want to add a locked/closed version.
I agree with you.
Thanks for the patch. It looks good to me.
Setting target version to 3.4.0.
--------------------------------------------------------------------------------
_Marius BALTEANU wrote:_
> In my opinion it makes no sense in all pages from where you can add new versions, not only in the modal dialogue. I think there are very few cases when you want to add a locked/closed version.
Yeah, totally agree with you! :)
Thanks for the patch! Looking forward to see this implemented!
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Patch committed, thanks.
--------------------------------------------------------------------------------
related_issues
duplicates,Closed,21416,Hide "status" field from new version form when it is called from modal dialogue from the issue form