\n
Configuration
\n
Filter \n
\n
\n \n \n Prefix | \n Properties | \n
\n \n \n {configProps.contexts\n ? Object.values(this.getContextList(configProps.contexts))\n .filter(this.propsFilterFn)\n .map((property, propIndex) => (\n \n {property['prefix']} | \n \n {Object.keys(property['properties']).map((propKey, index) => (\n \n {propKey}\n \n {JSON.stringify(property['properties'][propKey])}\n \n \n ))}\n | \n
\n ))\n : null}\n \n
\n {env.propertySources\n ? env.propertySources.map((envKey, envIndex) => (\n
\n
\n {envKey.name}\n
\n
\n \n \n Property | \n Value | \n
\n \n \n {Object.keys(envKey.properties)\n .filter(this.envFilterFn)\n .map((propKey, propIndex) => (\n \n {propKey} | \n \n {envKey.properties[propKey].value}\n | \n
\n ))}\n \n
\n
\n ))\n : null}\n
\n );\n }\n}\n\nconst mapStateToProps = ({ administration }: IRootState) => ({\n configuration: administration.configuration,\n isFetching: administration.loading\n});\n\nconst mapDispatchToProps = { getConfigurations, getEnv };\n\ntype StateProps = ReturnType