Merge pull request #6 from boazpoolman/develop

Develop
pull/7/head 0.1.5
Boaz Poolman 2021-04-10 17:42:00 +02:00 committed by GitHub
commit b28f34fd32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,8 @@ import ActionButtons from '../../components/ActionButtons';
const ConfigPage = () => {
const dispatch = useDispatch();
const isLoading = useSelector((state) => state.getIn(['config', 'isLoading']), Map());
const configDiff = useSelector((state) => state.getIn(['config', 'configDiff']), Map());
const isLoading = useSelector((state) => state.getIn(['config', 'isLoading'], Map({})));
const configDiff = useSelector((state) => state.getIn(['config', 'configDiff'], Map({})));
useEffect(() => {
dispatch(getAllConfigDiff());

View File

@ -1,6 +1,6 @@
{
"name": "strapi-plugin-config-sync",
"version": "0.1.4",
"version": "0.1.5",
"description": "Manage your Strapi database configuration as partial json files which can be imported/exported across environments. ",
"strapi": {
"name": "config-sync",