parent
fd73a4ac92
commit
6197ae25c6
4 changed files with 6 additions and 5 deletions
|
@ -320,7 +320,8 @@ ${getRichDescription(this.calEvent)}
|
|||
}
|
||||
|
||||
protected getLocation(): string {
|
||||
let providerName = this.calEvent.location ? getAppName(this.calEvent.location) : "";
|
||||
let providerName = this.calEvent.location && getAppName(this.calEvent.location);
|
||||
|
||||
if (this.calEvent.location && this.calEvent.location.includes("integrations:")) {
|
||||
const location = this.calEvent.location.split(":")[1];
|
||||
providerName = location[0].toUpperCase() + location.slice(1);
|
||||
|
|
|
@ -313,7 +313,7 @@ ${getRichDescription(this.calEvent)}
|
|||
}
|
||||
|
||||
protected getLocation(): string {
|
||||
let providerName = this.calEvent.location ? getAppName(this.calEvent.location) : "";
|
||||
let providerName = this.calEvent.location && getAppName(this.calEvent.location); // This returns null if nothing is found
|
||||
|
||||
if (this.calEvent.location && this.calEvent.location.includes("integrations:")) {
|
||||
const location = this.calEvent.location.split(":")[1];
|
||||
|
|
|
@ -128,8 +128,8 @@ export function getLocationLabels(t: TFunction) {
|
|||
}, defaultLocationLabels);
|
||||
}
|
||||
|
||||
export function getAppName(name: string) {
|
||||
return ALL_APPS_MAP[name as keyof typeof ALL_APPS_MAP]?.name || "No App Name";
|
||||
export function getAppName(name: string): string | null {
|
||||
return ALL_APPS_MAP[name as keyof typeof ALL_APPS_MAP]?.name ?? null;
|
||||
}
|
||||
|
||||
export function getAppType(name: string): string {
|
||||
|
|
|
@ -313,7 +313,7 @@ ${getRichDescription(this.calEvent)}
|
|||
}
|
||||
|
||||
protected getLocation(): string {
|
||||
let providerName = this.calEvent.location ? getAppName(this.calEvent.location) : "";
|
||||
let providerName = this.calEvent.location && getAppName(this.calEvent.location);
|
||||
|
||||
if (this.calEvent.location && this.calEvent.location.includes("integrations:")) {
|
||||
const location = this.calEvent.location.split(":")[1];
|
||||
|
|
Loading…
Reference in a new issue