Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Epic names?

Steven Battisti
Contributor
January 9, 2018 edited

New to JIRA. 

Can anyone explain why epics have both a Name and a Summary? I find myself always making them identical. 

Edit: Never mind, I found this: https://community.atlassian.com/t5/Jira-Software-questions/Epic-Names-vs-Summary/qaq-p/24899/jump-to/first-unread-message

Thanks!

1 answer

1 accepted

0 votes
Answer accepted
Tarun Sapra
Community Champion
January 9, 2018

Epic name is what you see in the "Epic Panel" on a scrum backlog and also Epic name is used as the "Epic link" in the linked story.  Whereas Summary is just the normal JIRA field. 

Steven Battisti
Contributor
January 9, 2018

Thanks. I'm just still not sure why you would want those things to be different....

Like • 9 people like this
Mari Car
Contributor
July 23, 2018

Hi,

 

I know the difference but I always give for both the same name. Can I remove from the screen the Epic Summary? When I clone an Epic I find really annoying to change the two fields. I forget to change the summary. 

Did you try to remove it? 

 

Thank you and beste regards. 

Mari

Trejkaz
Contributor
October 30, 2018

What is the point of having two fields? I've seen two cases so far:

  1. The names exactly match. In this case, having the separate field is redundant.
  2. The names don't match, because someone renamed the ticket and didn't know the "Epic Name" field existed. In this case, having the separate field adds confusion when you're trying to autocomplete an Epic Link on another ticket.

Is there a valid use case for having two different names for the same ticket, where it also doesn't cause confusion?

Like • 12 people like this
rob.green
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 17, 2018 edited

The confusion is caused by the "epic name" being used in the epic list and other places, but when you open the epic, it's the summary that's in big bold text.

The summary is used as the title, which is counterintuitive, and the name is given reduced prominence with muted text and lower in the page so you have to go looking for a reference to the thing you thought you just navigated to.

I find it really confusing and very annoying that the prominence is swapped depending on the context. It would be far better if the field used for the title was the same as is used elsewhere.

It's a seriously flawed design decision that leads to a dysfunctional UI (IMHO of course).

I use the "summary" as a title and give it the same value as the epic name to avoid confusion. The description contains the details. I also make sure the names follow a suitable hierarchy that follows a logical naming order, they are never "as an X I want to ... so that ...", that goes as the first line of the description.

Like • 19 people like this
Přemysl Václavík
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 4, 2019

Where can I set that the title of an Epic issue will be Epic Name instead of the Epic Summary ?

Like • 3 people like this
Mark Winston
Contributor
July 25, 2019 edited

So it seems that the reasoning behind this is so you can have a shorthand name in the epic panel and epic link, which has logic to it.  However, life is all about tradeoffs and after being the company Jira guru for 6 years and training new teams to use it, this benefit doesn't outweigh the confusion that it creates.  There should just be one field called "summary," which is also used for epic panels and epic fields.  In other words, get rid of the epic name field.  If that causes issues in the underlying Jira architecture, those issues should be addressed in favor of reducing user complexity and confusion.  

Like • 39 people like this
JR
Contributor
March 16, 2020

Agreed, this just causes needless confusion.  I set both the same.

Like • 2 people like this
dtlhlbs
Contributor
September 5, 2021

The font size of the epic label is the same as an issue's summary on the board and backlog views. It's redundant and a pain to update if you find yourself updating the summary when looking at the epic, then needing to go to the backlog > expand epics panel > expand epic > edit name and copy-paste the name to update. A waste of time. I too just name them the same as the summary and longer names have never been a problem.

Like • Nicolas Degardin likes this
Vitor Seabra
Contributor
December 29, 2021

It looks like a legacy thing that makes any sense nowadays and Jira doesn't know how to solve it.

 

Same as 'Mark as Done' button at Epics grid.

Like • Kwame Afreh likes this
Alex R_ April 18, 2023

I found this idiosyncratic behavior terribly annoying myself. For the benefit of other admins, here is the workaround I devised for myself. This should be added to your announcement banner. It hides the summary field whenever the Epic Name field exists and sets the value of the summary field to whatever you type in the Epic Name field.

function configureEpicNameInput(form) {
    if (form.length === 0) { return; }

    var epicNameInput = form.find("input#customfield_10104");
    var summaryInput = form.find("input#summary");

    epicNameInput.on("input", function() {
        // Copy the value from epicNameInput to summaryInput
        summaryInput.val(epicNameInput.val());
    });

    if (epicNameInput.length > 0) {
        summaryInput.closest("div.field-group").css('display', 'none');
    }
}

// https://developer.atlassian.com/server/jira/platform/extending-inline-edit-for-jira-plugins/
AJS.$(function() {
    JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function(e, context, reason) {
        var $context = AJS.$(context);
        if (reason == JIRA.CONTENT_ADDED_REASON.dialogReady) {
            configureEpicNameInput($context.find("form#dialog-form.aui"));
        }
    });
});

// for static issue creation form (https:///secure/CreateIssue.jspa)
AJS.$(document).ready(function(){
    configureEpicNameInput(AJS.$("form#issue-create.aui"));
});

Please note this does not yet address keeping the two fields in sync when the summary field is changed from the standard view issue page.

Like • Reuben likes this

Suggest an answer

Log in or Sign up to answer
TAGS
atlassian, team '25 europe, atlassian event, barcelona 2025, jira, confluence, atlassian intelligence, rovo, ai-powered collaboration, developer tools, agile teams, digital transformation, teamwork solutions, atlassian conference, product announcements

🌆 Team '25 Europe registration is now open!

Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.

Register now
AUG Leaders

Atlassian Community Events