Browse Source

Merge branch 'lts-4.2' into lts-4.3

pull/15171/head
Vladyslav_Prykhodko 3 months ago
parent
commit
643fd573cc
  1. 8
      ui-ngx/src/app/core/services/resources.service.ts

8
ui-ngx/src/app/core/services/resources.service.ts

@ -24,7 +24,9 @@ import {
ɵCssSelectorList,
ɵNG_COMP_DEF,
ɵNG_MOD_DEF,
ɵNG_PIPE_DEF,
ɵNgModuleDef,
ɵPipeDef,
DOCUMENT
} from '@angular/core';
@ -302,6 +304,12 @@ export class ResourcesService {
(component as any).standalone = false;
}
}
if (ɵNG_PIPE_DEF in decl) {
const pipe: ɵPipeDef<any> = decl[ɵNG_PIPE_DEF];
if (isUndefined(pipe.standalone) || pipe.standalone) {
(pipe as any).standalone = false;
}
}
}
}
modulesWithComponents.modules.push(moduleInfo);

Loading…
Cancel
Save