cliff-effects
cliff-effects copied to clipboard
Cliff effects guidance prototype (archived)
If one or more of us can run a search in terminal to try to track down cliffs, specifically in SNAP, that could be useful. There would be millions of...
So far, we use client data to determine what to show in the form and client data is supposed to contain just the data for the calculations. We're slowly getting...
Other than the shallow tests not catching bunches of stuff, I think we may find some things not right with our components.
When your `render()` method passes an anonymous function as a prop, a new function instance will be created and that prop's value will be different every time `render()` is called,...
## src/components/prompts/FeedbackForm/FeedbackForm.js - [ ] Yes and No labels - [ ] Cancel button text - [ ] Send with/without information text ## src/forms/ButtonReset.js - [ ] leaveText for click...
Some accessibility items that need addressing. For standard keyboard interaction, see https://webaim.org/techniques/keyboard/. - [ ] More contrast needed for hover and other interactions, including (now issue #852): - [ ]...
I hesitate to suggest this because I don't know how to avoid the same thing happening again. So I reorganized the google shared folder to make more sense for the...
1. Strengthen names (`activeID` prop name to `timeInterval`) 2. Documentation
In 'src/utils/valueFixers.js' `isNumberlike()` change from ```js if (typeof trueOrError === `object`) { //... ``` to ```js if (typeof trueOrError instanceof Error) { //... ```
Currently, there are several places in the (now publishable) JSDoc comments where: * Things are missing (or "TODO") * Things that shouldn't be documented (minor local variables) are documented *...