Uploaded image for project: 'Jira Data Center'
  1. Jira Data Center
  2. JRASERVER-42740

Make Project and Issue Type select fields wider on Create and Edit screens

    XMLWordPrintable

Details

    • We collect Jira feedback from various sources, and we evaluate what we've collected when planning our product roadmap. To understand how this piece of feedback will be reviewed, see our Implementation of New Features Policy.

    Description

      NOTE: This suggestion is for JIRA Server. Using JIRA Cloud? See the corresponding suggestion.

      It appears that the fields are now shorter in JIRA 6 than in JIRA 5. This may cause confusion to users when selecting projects and issue types which have the same long prefix when creating or editing issues. The undesired effect is one may create an issue into a wrong project and/or of a wrong issue type.

      Current workaround is to use this script in Announcement Banner:

      <script type="text/javascript"> 
      jQuery(document).ready(function($) {
          JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) {            
                      callFunction();
                  });
                  callFunction();
                    
      function callFunction(){
                      //for project field
                      $('#project-single-select').css('max-width','500px');
                      $('#project-single-select').css('width','500px');
                      $('#project-field').css('max-width','500px');
                      $('#project-field').css('width','500px');
                      //for issuetype field
                      $('#issuetype-single-select').css('max-width','500px');
                      $('#issuetype-single-select').css('width','500px');
                      $('#issuetype-field').css('max-width','500px');
                      $('#issuetype-field').css('width','500px');
      }
        
      });
      </script>
      

      Source: https://answers.atlassian.com/questions/247995/increase-width-of-project-and-issue-type-box

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              vdung Andy Nguyen (Inactive)
              Votes:
              1 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: