### What problem does this PR solve? ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)tags/v0.17.0
| @@ -162,7 +162,7 @@ class Canvas(ABC): | |||
| self.components[k]["obj"].reset() | |||
| self._embed_id = "" | |||
| def get_compnent_name(self, cid): | |||
| def get_component_name(self, cid): | |||
| for n in self.dsl["graph"]["nodes"]: | |||
| if cid == n["id"]: | |||
| return n["data"]["name"] | |||
| @@ -210,7 +210,7 @@ class Canvas(ABC): | |||
| if c not in waiting: | |||
| waiting.append(c) | |||
| continue | |||
| yield "*'{}'* is running...🕞".format(self.get_compnent_name(c)) | |||
| yield "*'{}'* is running...🕞".format(self.get_component_name(c)) | |||
| if cpn.component_name.lower() == "iteration": | |||
| st_cpn = cpn.get_start() | |||
| @@ -555,7 +555,7 @@ class ComponentBase(ABC): | |||
| eles.extend(self._canvas.get_component(cpn_id)["obj"]._param.query) | |||
| continue | |||
| eles.append({"name": self._canvas.get_compnent_name(cpn_id), "key": cpn_id}) | |||
| eles.append({"name": self._canvas.get_component_name(cpn_id), "key": cpn_id}) | |||
| else: | |||
| eles.append({"key": q["value"], "name": q["value"], "value": q["value"]}) | |||
| return eles | |||
| @@ -94,5 +94,5 @@ class Categorize(Generate, ABC): | |||
| def debug(self, **kwargs): | |||
| df = self._run([], **kwargs) | |||
| cpn_id = df.iloc[0, 0] | |||
| return Categorize.be_output(self._canvas.get_compnent_name(cpn_id)) | |||
| return Categorize.be_output(self._canvas.get_component_name(cpn_id)) | |||
| @@ -122,7 +122,7 @@ class Generate(ComponentBase): | |||
| res.append({"key": r.group(1), "name": p["name"]}) | |||
| key_set.add(r.group(1)) | |||
| continue | |||
| cpn_nm = self._canvas.get_compnent_name(cpn_id) | |||
| cpn_nm = self._canvas.get_component_name(cpn_id) | |||
| if not cpn_nm: | |||
| continue | |||
| res.append({"key": cpn_id, "name": cpn_nm}) | |||
| @@ -57,7 +57,7 @@ class Template(ComponentBase): | |||
| res.append({"key": r.group(1), "name": p["name"]}) | |||
| key_set.add(r.group(1)) | |||
| continue | |||
| cpn_nm = self._canvas.get_compnent_name(cpn_id) | |||
| cpn_nm = self._canvas.get_component_name(cpn_id) | |||
| if not cpn_nm: | |||
| continue | |||
| res.append({"key": cpn_id, "name": cpn_nm}) | |||