Skip to content
Snippets Groups Projects
Commit 3d805c38 authored by Adrian Orłów's avatar Adrian Orłów
Browse files

feat: make inactive pins colors different by type

parent 47b72587
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!163feat: add multisearch (MIN-210)
Pipeline #88103 passed
......@@ -84,7 +84,7 @@ describe('getBioEntitySingleFeature - subUtil', () => {
});
expect(getPinStyleSpy).toHaveBeenCalledWith({
color: addAlphaToHexString(PINS_COLORS.bioEntity, 0.5),
color: addAlphaToHexString(PINS_COLORS[type], 0.5),
value,
textColor: addAlphaToHexString(TEXT_COLOR, 0.5),
});
......
......@@ -25,7 +25,7 @@ export const getBioEntitySingleFeature = (
): Feature => {
const color = isActive
? PINS_COLORS[type]
: addAlphaToHexString(PINS_COLORS.bioEntity, INACTIVE_ELEMENT_OPACITY);
: addAlphaToHexString(PINS_COLORS[type], INACTIVE_ELEMENT_OPACITY);
const textColor = isActive
? TEXT_COLOR
......
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