@topconsultnpm/sdkui-react-beta 6.15.97 → 6.15.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -118,10 +118,11 @@ const TMHeader = ({ onMenusOpen, showSettingsMenu = true, showSearchBar = true,
|
|
|
118
118
|
const cultureName = getCultureDisplayName(cultureId);
|
|
119
119
|
const headerAppName = useMemo(() => {
|
|
120
120
|
switch (SDK_Globals.appModule) {
|
|
121
|
-
case AppModules.ORCHESTRATOR: return AppModules.ORCHESTRATOR;
|
|
122
|
-
case AppModules.DESIGNER: return AppModules.DESIGNER;
|
|
123
121
|
case AppModules.WORD_CONNECTOR: return 'WORD CONNECTOR';
|
|
124
|
-
|
|
122
|
+
case AppModules.EXCEL_CONNECTOR: return 'EXCEL CONNECTOR';
|
|
123
|
+
case AppModules.OUTLOOK_CONNECTOR: return 'OUTLOOK CONNECTOR';
|
|
124
|
+
case AppModules.POWERPOINT_CONNECTOR: return 'POWERPOINT CONNECTOR';
|
|
125
|
+
default: return SDK_Globals.appModule;
|
|
125
126
|
}
|
|
126
127
|
}, [SDK_Globals.appModule]);
|
|
127
128
|
useEffect(() => { clearSearchJobValue && setSearchJobsValue(''); }, [clearSearchJobValue]);
|