Skip to content
Snippets Groups Projects
Commit 7310c593 authored by Bucknell, Mary S.'s avatar Bucknell, Mary S.
Browse files

Handle qualifiers of 'e' and 'E' the same

parent 33b280cd
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,7 @@ export const flatPointsSelector = memoize(tsKey => createSelector(
export const classesForPoint = point => {
return {
approved: point.qualifiers.indexOf('A') > -1,
estimated: point.qualifiers.indexOf('e') > -1
estimated: point.qualifiers.indexOf('e') > -1 || point.qualifiers.indexOf('E') > -1
};
};
......
......@@ -307,7 +307,7 @@ describe('drawingData module', () => {
qualifiers: ['P', 'e']
}, {
value: 10,
qualifiers: ['P', 'e']
qualifiers: ['P', 'E']
}],
tsKey: 'current:P7D'
},
......@@ -352,7 +352,7 @@ describe('drawingData module', () => {
'value': 10,
'qualifiers': [
'P',
'e'
'E'
]
}
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment