From 0f52dcbdca01a2af986b44b037c454f6452a45cb Mon Sep 17 00:00:00 2001 From: argirok Date: Mon, 8 Jan 2024 14:29:54 +0200 Subject: [PATCH] [angular-16-irish-monitor | DONE | CHANGED] hide shema enhancements message for irish case --- monitor-admin/topic/indicators.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor-admin/topic/indicators.component.ts b/monitor-admin/topic/indicators.component.ts index 17e046c5..f54881a3 100644 --- a/monitor-admin/topic/indicators.component.ts +++ b/monitor-admin/topic/indicators.component.ts @@ -1195,7 +1195,7 @@ export class IndicatorsComponent extends IndicatorStakeholderBaseComponent imple } private checkForSchemaEnhancements(url: string) { - this.showCheckForSchemaEnhancements = this.isAdministrator && url && !this.properties.useOldStatisticsSchema && this.indicatorUtils.checkForSchemaEnhancements(url); + this.showCheckForSchemaEnhancements = this.isAdministrator && url && !this.properties.useOldStatisticsSchema && this.indicatorUtils.checkForSchemaEnhancements(url) && this.properties.adminToolsPortalType != 'irish'; } migrateFromOldImportJsonFile(charts) {