Don't show work items with Ignore tag
This commit is contained in:
parent
7ab4b756d1
commit
ece70e7fd8
@ -97,6 +97,8 @@ function getWorkItems(data) {
|
|||||||
workItem = data[i];
|
workItem = data[i];
|
||||||
if (workItem.AreaPath !== 'ART SPS\\LEO')
|
if (workItem.AreaPath !== 'ART SPS\\LEO')
|
||||||
continue;
|
continue;
|
||||||
|
if (workItem.Tags != null && workItem.Tags.includes("Ignore"))
|
||||||
|
continue;
|
||||||
if (workItem.WorkItemType !== 'Feature' && workItem.WorkItemType !== 'Bug')
|
if (workItem.WorkItemType !== 'Feature' && workItem.WorkItemType !== 'Bug')
|
||||||
continue;
|
continue;
|
||||||
workItem["State"] = getState(workItem["State"])
|
workItem["State"] = getState(workItem["State"])
|
||||||
|
@ -97,6 +97,8 @@ function getWorkItems(data) {
|
|||||||
workItem = data[i];
|
workItem = data[i];
|
||||||
if (workItem.AreaPath !== 'ART SPS\\MES')
|
if (workItem.AreaPath !== 'ART SPS\\MES')
|
||||||
continue;
|
continue;
|
||||||
|
if (workItem.Tags != null && workItem.Tags.includes("Ignore"))
|
||||||
|
continue;
|
||||||
if (workItem.WorkItemType !== 'Feature' && workItem.WorkItemType !== 'Bug')
|
if (workItem.WorkItemType !== 'Feature' && workItem.WorkItemType !== 'Bug')
|
||||||
continue;
|
continue;
|
||||||
workItem["State"] = getState(workItem["State"])
|
workItem["State"] = getState(workItem["State"])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user