mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-19 04:41:02 +00:00
Update LogsClassBase.ts to convert method from arrow function (#15969)
This commit is contained in:
parent
e01054fe68
commit
eeaab62e63
@ -42,11 +42,11 @@ class LogsClassBase {
|
|||||||
* name: string
|
* name: string
|
||||||
* url: string
|
* url: string
|
||||||
*/
|
*/
|
||||||
public getLogBreadCrumbs = (
|
public getLogBreadCrumbs(
|
||||||
serviceType: string,
|
serviceType: string,
|
||||||
ingestionName: string,
|
ingestionName: string,
|
||||||
ingestionDetails: IngestionPipeline | undefined
|
ingestionDetails: IngestionPipeline | undefined
|
||||||
) => {
|
) {
|
||||||
const updateIngestionName = Fqn.split(ingestionName);
|
const updateIngestionName = Fqn.split(ingestionName);
|
||||||
if (updateIngestionName.includes(OPEN_METADATA) && ingestionDetails) {
|
if (updateIngestionName.includes(OPEN_METADATA) && ingestionDetails) {
|
||||||
return [
|
return [
|
||||||
@ -114,7 +114,7 @@ class LogsClassBase {
|
|||||||
: '',
|
: '',
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const logsClassBase = new LogsClassBase();
|
const logsClassBase = new LogsClassBase();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user