Created
June 23, 2021 18:18
-
-
Save jimarnold/70328960b4c3c9389d4368f8f6dba5f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit e81637d95a02696a85ccefcf3a16e83890a38817 | |
Author: Jim Arnold <[email protected]> | |
Date: Wed Jun 23 14:18:17 2021 -0400 | |
remove rogue backticks | |
diff --git a/src/data/AttributeValueSet.js b/src/data/AttributeValueSet.js | |
index 153cfefc6..f525a1165 100644 | |
--- a/src/data/AttributeValueSet.js | |
+++ b/src/data/AttributeValueSet.js | |
@@ -61,7 +61,7 @@ export default class AttributeValueSet extends Immutable.Record(fields) { | |
AttributeValueSet.create({ | |
taxonomyNodeId: avs.get('taxonomy'), | |
attribute: key, | |
- possibleValues: Immutable.List(val)`` | |
+ possibleValues: Immutable.List(val) | |
}) | |
); | |
} | |
diff --git a/src/data/taxonomy/prototype/taxonomyNodeSpecific.js b/src/data/taxonomy/prototype/taxonomyNodeSpecific.js | |
index 19ceea786..77f8adc32 100644 | |
--- a/src/data/taxonomy/prototype/taxonomyNodeSpecific.js | |
+++ b/src/data/taxonomy/prototype/taxonomyNodeSpecific.js | |
@@ -825,7 +825,7 @@ export default { | |
const position = specifiedOrder.indexOf(item.attribute()); | |
return position < 0 ? defaultSortOrder + specifiedOrder.length + 2 : position; | |
} | |
- ``; | |
+ | |
const validAttributes = this.getValidAttributesForFilter(attributes, nodeOrId); | |
return this.fullNodeIdPath(nodeOrId) | |
.flatMap(nodeOrId => this.getFilters(nodeOrId, type)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment