@backstage/plugin-kubernetes 0.9.0 → 0.9.1
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.
- package/CHANGELOG.md +6 -0
- package/dist/index.esm.js +1 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.esm.js
CHANGED
|
@@ -11,7 +11,6 @@ import lodash from 'lodash';
|
|
|
11
11
|
import { DateTime } from 'luxon';
|
|
12
12
|
import ExpandMoreIcon from '@material-ui/icons/ExpandMore';
|
|
13
13
|
import { Skeleton } from '@material-ui/lab';
|
|
14
|
-
import { kubernetesProxyApiRef as kubernetesProxyApiRef$1 } from '@backstage/plugin-kubernetes';
|
|
15
14
|
import useAsync from 'react-use/lib/useAsync';
|
|
16
15
|
import SubjectIcon from '@material-ui/icons/Subject';
|
|
17
16
|
import CloseIcon from '@material-ui/icons/Close';
|
|
@@ -705,7 +704,7 @@ const detectErrors = (objects) => {
|
|
|
705
704
|
};
|
|
706
705
|
|
|
707
706
|
const usePodLogs = ({ podScope }) => {
|
|
708
|
-
const kubernetesProxyApi = useApi(kubernetesProxyApiRef
|
|
707
|
+
const kubernetesProxyApi = useApi(kubernetesProxyApiRef);
|
|
709
708
|
return useAsync(async () => {
|
|
710
709
|
return await kubernetesProxyApi.getPodLogs({
|
|
711
710
|
podName: podScope.podName,
|