@ca-plant-list/ca-plant-list 0.4.23 → 0.4.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -184,9 +184,7 @@ class PageRenderer extends BasePageRenderer {
184
184
  {
185
185
  name: "Endangered Species",
186
186
  filename: "list_endangered",
187
- include: (t) =>
188
- t.getCESA() !== undefined ||
189
- t.getFESA() !== undefined,
187
+ include: (t) => !!t.getCESA() || !!t.getFESA(),
190
188
  columns: ENDANGERED_COLS,
191
189
  },
192
190
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ca-plant-list/ca-plant-list",
3
- "version": "0.4.23",
3
+ "version": "0.4.24",
4
4
  "description": "Tools to create Jekyll files for a website listing plants in an area of California.",
5
5
  "license": "MIT",
6
6
  "repository": {