Skip to content

Commit 321b8f7

Browse files
authored
add extra info in add service page (#20490)
1 parent 900c12b commit 321b8f7

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

openmetadata-ui/src/main/resources/ui/src/pages/AddServicePage/AddServicePage.component.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,10 @@ const AddServicePage = () => {
299299
</div>
300300
);
301301

302+
useEffect(() => {
303+
serviceUtilClassBase.getExtraInfo();
304+
}, []);
305+
302306
return (
303307
<ResizablePanels
304308
className="content-height-with-resizable-panel"

openmetadata-ui/src/main/resources/ui/src/utils/ServiceUtilClassBase.ts

+4
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,10 @@ class ServiceUtilClassBase {
765765
return widgets;
766766
}
767767

768+
public getExtraInfo() {
769+
return null;
770+
}
771+
768772
public getProperties(property: ObjectFieldTemplatePropertyType[]) {
769773
return {
770774
properties: property,

0 commit comments

Comments
 (0)