@elite.framework/ng.core 2.0.34 → 2.0.35

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.
@@ -74,7 +74,7 @@ class RestService {
74
74
  var moduleName = config.moduleName || '';
75
75
  const { method, params, ...options } = request;
76
76
  const { observe = "body" /* Rest.Observe.Body */, skipHandleError } = config;
77
- const url = this.removeDuplicateSlashes(moduleName + api + request.url);
77
+ const url = this.removeDuplicateSlashes(api + moduleName + request.url);
78
78
  const httpClient = this.getHttpClient(config.skipAddingHeader ?? false);
79
79
  return httpClient
80
80
  .request(method, url, {
@@ -2046,7 +2046,7 @@ class FrameworkTitleStrategy extends TitleStrategy {
2046
2046
  const title = this.buildTitle(routerState);
2047
2047
  const projectName = this.localizationService.instant({
2048
2048
  key: '::AppName',
2049
- defaultValue: 'MyProjectName',
2049
+ defaultValue: '', // 'MyProjectName
2050
2050
  });
2051
2051
  if (!title) {
2052
2052
  return this.title.setTitle(projectName);