7ef85b6d54
If a previous fetch of query results was unsuccessful, a "No Results" message is displayed by the AutoRefresh component. When it went to fetch results again, this would briefly be replaced by its composed compoenent which would be instructed to show its "loading" treatment. Since "No Results" is usually not a situation that would spontaneously change without user intervention, this patch stores whether the previous fetch was successful, and hides the loading treatment during subsequent fetches if it wasn't. |
||
---|---|---|
.. | ||
.storybook | ||
assets/images | ||
spec | ||
src | ||
stories | ||
webpack | ||
.babelrc | ||
.eslintignore | ||
.eslintrc | ||
.gitignore | ||
.npmrc | ||
README.md | ||
corsless.js | ||
karma.conf.js | ||
package.json | ||
yarn.lock |
README.md
Packages
We are using yarn 0.19.1.
Adding new packages
To add a new package, run
yarn add packageName
Adding devDependency
yarn add --dev packageName
Updating a package
First, run
yarn outdated
... to determine which packages may need upgrading.
We really should not upgrade all packages at once, but, one at a time and make darn sure to test.
To upgrade a single package named packageName
:
yarn upgrade packageName