+
+
+
+
+ {!!dockerConfig ? (
+
+
+
+
+
+ ) : null}
+
+
+ );
+};
diff --git a/ui/src/router/components/configuration/components/pyfunc_config_section/PyFuncRefConfigTable.js b/ui/src/router/components/configuration/components/pyfunc_config_section/PyFuncRefConfigTable.js
new file mode 100644
index 000000000..70344e46a
--- /dev/null
+++ b/ui/src/router/components/configuration/components/pyfunc_config_section/PyFuncRefConfigTable.js
@@ -0,0 +1,33 @@
+import React, { useContext } from "react";
+import { EuiDescriptionList } from "@elastic/eui";
+import EnsemblersContext from "../../../../../providers/ensemblers/context";
+
+export const PyFuncRefConfigTable = ({ config: { ensembler_id } }) => {
+ const { ensemblers } = useContext(EnsemblersContext);
+
+ const ensembler_name = Object.values(ensemblers)
+ .filter((value) => value.id === ensembler_id)
+ .map((ensembler) => ensembler.name);
+
+ const items = [
+ {
+ title: "Ensembler ID",
+ description: ensembler_id,
+ },
+ {
+ title: "Ensembler Name",
+ description: ensembler_name,
+ },
+ ];
+
+ return (
+