Closed vladimirpotekhin closed 7 months ago
b430d42b99
)[!TIP] I can email you next time I complete a pull request if you set up your email here!
I found the following snippets in your repository. I will now analyze these snippets and come up with a plan.
projects/demo/src/modules/services/destroy/examples/1/component.ts
✓ https://github.com/taiga-family/taiga-ui/commit/1a068a7f4ae0a5f2f013230f8addde247dcc6e34 Edit
Modify projects/demo/src/modules/services/destroy/examples/1/component.ts with contents:
• Remove "TuiDestroyService" from imports.
• Add "DestroyRef" to imports from "@angular/core".
• Add "takeUntilDestroyed" to imports from "@angular/core/rxjs-interop".
• Replace "TuiDestroyService" in providers with "DestroyRef".
• Change "destroy$ = inject(TuiDestroyService, {self: true});" to "destroyRef = inject(DestroyRef);".
• Replace "takeUntil(this.destroy$)" with "takeUntilDestroyed(this.destroyRef)".
--- +++ @@ -1,7 +1,8 @@ import {Component, ElementRef, inject} from '@angular/core'; import {changeDetection} from '@demo/emulate/change-detection'; import {encapsulation} from '@demo/emulate/encapsulation'; -import {TuiDestroyService} from '@taiga-ui/cdk'; +import {DestroyRef} from '@angular/core'; +import {takeUntilDestroyed} from '@angular/core/rxjs-interop'; import {fromEvent, takeUntil} from 'rxjs'; @Component({ @@ -9,12 +10,12 @@ templateUrl: './template.html', encapsulation, changeDetection, - providers: [TuiDestroyService], + providers: [] }) export class TuiDestroyExample { constructor() { fromEvent(inject(ElementRef).nativeElement, 'click') - .pipe(takeUntil(inject(TuiDestroyService, {self: true}))) + .pipe(takeUntilDestroyed(inject(DestroyRef))) .subscribe(() => console.info('click')); } }
projects/demo/src/modules/services/destroy/examples/1/component.ts
✓ Edit
Check projects/demo/src/modules/services/destroy/examples/1/component.ts with contents:
Ran GitHub Actions for 1a068a7f4ae0a5f2f013230f8addde247dcc6e34:
projects/demo/src/modules/directives/for/examples/1/index.ts
✓ https://github.com/taiga-family/taiga-ui/commit/4b9e3868204d56e779d16c6da08ea92c6793ec68 Edit
Modify projects/demo/src/modules/directives/for/examples/1/index.ts with contents:
• Remove "TuiDestroyService" from imports.
• Add "DestroyRef" to imports from "@angular/core".
• Add "takeUntilDestroyed" to imports from "@angular/core/rxjs-interop".
• Replace "TuiDestroyService" in providers with "DestroyRef".
• Change "destroy$ = inject(TuiDestroyService, {self: true});" to "destroyRef = inject(DestroyRef);".
• Replace "takeUntil(this.destroy$)" with "takeUntilDestroyed(this.destroyRef)".
--- +++ @@ -1,7 +1,7 @@ -import {Component, inject} from '@angular/core'; +import {Component, inject, DestroyRef} from '@angular/core'; import {changeDetection} from '@demo/emulate/change-detection'; import {encapsulation} from '@demo/emulate/encapsulation'; -import {TuiDestroyService} from '@taiga-ui/cdk'; +import {takeUntilDestroyed} from '@angular/core/rxjs-interop'; import {BehaviorSubject, takeUntil, timer} from 'rxjs'; @Component({ @@ -9,10 +9,10 @@ templateUrl: './index.html', encapsulation, changeDetection, - providers: [TuiDestroyService], + providers: [], }) export class TuiForExample1 { - private readonly destroy$ = inject(TuiDestroyService, {self: true}); + private readonly destroyRef = inject(DestroyRef); protected readonly items$ = new BehaviorSubject([]); @@ -22,7 +22,7 @@ const delay = Math.round(Math.random() * 2000); timer(delay) - .pipe(takeUntil(this.destroy$)) + .pipe(takeUntilDestroyed(this.destroyRef)) .subscribe(() => this.items$.next( delay % 2
projects/demo/src/modules/directives/for/examples/1/index.ts
✓ Edit
Check projects/demo/src/modules/directives/for/examples/1/index.ts with contents:
Ran GitHub Actions for 4b9e3868204d56e779d16c6da08ea92c6793ec68:
projects/demo/src/modules/services/scroll/examples/1/index.ts
✓ https://github.com/taiga-family/taiga-ui/commit/e7d70d2c412d60af21c30ce609c52a167b695c8e Edit
Modify projects/demo/src/modules/services/scroll/examples/1/index.ts with contents:
• Remove "TuiDestroyService" from imports.
• Add "DestroyRef" to imports from "@angular/core".
• Add "takeUntilDestroyed" to imports from "@angular/core/rxjs-interop".
• Replace "TuiDestroyService" in providers with "DestroyRef".
• Change "destroy$ = inject(TuiDestroyService, {self: true});" to "destroyRef = inject(DestroyRef);".
• Replace "takeUntil(this.destroy$)" with "takeUntilDestroyed(this.destroyRef)".
--- +++ @@ -2,7 +2,9 @@ import {Component, inject} from '@angular/core'; import {changeDetection} from '@demo/emulate/change-detection'; import {encapsulation} from '@demo/emulate/encapsulation'; -import {TuiDestroyService, TuiScrollService} from '@taiga-ui/cdk'; +import {TuiScrollService} from '@taiga-ui/cdk'; +import {DestroyRef} from '@angular/core'; +import {takeUntilDestroyed} from '@angular/core/rxjs-interop'; import {takeUntil} from 'rxjs'; @Component({ @@ -11,11 +13,11 @@ styleUrls: ['./index.less'], encapsulation, changeDetection, - providers: [TuiDestroyService], + providers: [] }) export class TuiScrollExample1 { private readonly scrollService = inject(TuiScrollService); - private readonly destroy$ = inject(TuiDestroyService, {self: true}); + private readonly destroyRef = inject(DestroyRef); protected scrollTop = 0; protected scrollLeft = 0; @@ -24,7 +26,7 @@ protected onClick({nativeElement}: ElementRef): void { this.scrollService .scroll$(nativeElement, this.scrollTop, this.scrollLeft, this.duration) - .pipe(takeUntil(this.destroy$)) + .pipe(takeUntilDestroyed(this.destroyRef)) .subscribe(); } }
projects/demo/src/modules/services/scroll/examples/1/index.ts
✓ Edit
Check projects/demo/src/modules/services/scroll/examples/1/index.ts with contents:
Ran GitHub Actions for e7d70d2c412d60af21c30ce609c52a167b695c8e:
projects/demo/src/modules/app/app.component.ts
✓ https://github.com/taiga-family/taiga-ui/commit/a870e1adff94e06ebdf8c21868a5ee10c93d8202 Edit
Modify projects/demo/src/modules/app/app.component.ts with contents:
• Remove "TuiDestroyService" from imports.
• Add "DestroyRef" to imports from "@angular/core".
• Add "takeUntilDestroyed" to imports from "@angular/core/rxjs-interop".
• Replace "TuiDestroyService" in providers with "DestroyRef".
• Change "destroy$ = inject(TuiDestroyService, {self: true});" to "destroyRef = inject(DestroyRef);".
• Replace "takeUntil(this.destroy$)" with "takeUntilDestroyed(this.destroyRef)".
• If "takeUntil" is no longer used elsewhere in the file, remove it from imports.
--- +++ @@ -8,7 +8,8 @@ import {TuiDocMainModule, TuiLanguageSwitcherComponent} from '@taiga-ui/addon-doc'; import {TuiSheetModule} from '@taiga-ui/addon-mobile'; import {TuiTableBarsHostModule} from '@taiga-ui/addon-tablebars'; -import {TuiDestroyService} from '@taiga-ui/cdk'; +import {DestroyRef} from '@angular/core'; +import {takeUntilDestroyed} from '@angular/core/rxjs-interop'; import {TuiLinkModule, TuiModeModule, TuiTextfieldControllerModule} from '@taiga-ui/core'; import {distinctUntilChanged, filter, map, takeUntil} from 'rxjs'; @@ -42,13 +43,12 @@ changeDetection, providers: [ ResizeObserverService, - TuiDestroyService, DEMO_PAGE_LOADED_PROVIDER, TUI_VERSION_MANAGER_PROVIDERS, ], }) export class AppComponent extends AbstractDemoComponent implements OnInit { - private readonly destroy$ = inject(TuiDestroyService, {self: true}); + private readonly destroyRef = inject(DestroyRef); private readonly ym = inject(YaMetrikaService); protected readonly router = inject(Router); protected readonly storage = inject(LOCAL_STORAGE); @@ -67,7 +67,7 @@ this.router.events .pipe( filter((event): event is NavigationEnd => event instanceof NavigationEnd), - takeUntil(this.destroy$), + takeUntilDestroyed(this.destroyRef), ) .subscribe(event => this.ym.hit(event.urlAfterRedirects, {referer: event.url}),
projects/demo/src/modules/app/app.component.ts
✓ Edit
Check projects/demo/src/modules/app/app.component.ts with contents:
Ran GitHub Actions for a870e1adff94e06ebdf8c21868a5ee10c93d8202:
projects/demo/src/modules/components/sheet/examples/1/index.ts
✓ https://github.com/taiga-family/taiga-ui/commit/3d283ed83a4893834a5f3a22fca1ffcad7ec055d Edit
Modify projects/demo/src/modules/components/sheet/examples/1/index.ts with contents:
• Follow the same steps as outlined for "projects/demo/src/modules/services/destroy/examples/1/component.ts".
--- +++ @@ -1,8 +1,8 @@ -import {Component, inject} from '@angular/core'; +import {Component, inject, DestroyRef} from '@angular/core'; import {changeDetection} from '@demo/emulate/change-detection'; import {encapsulation} from '@demo/emulate/encapsulation'; import {TuiSheetService} from '@taiga-ui/addon-mobile'; -import {TuiDestroyService} from '@taiga-ui/cdk'; +import {takeUntilDestroyed} from '@angular/core/rxjs-interop'; import {Subject, switchMap, takeUntil} from 'rxjs'; @Component({ @@ -10,7 +10,7 @@ templateUrl: './index.html', encapsulation, changeDetection, - providers: [TuiDestroyService], + providers: [] }) export class TuiSheetExample1 { protected readonly stream$ = new Subject(); @@ -21,7 +21,7 @@ switchMap(() => inject(TuiSheetService).open('Simple sheet', {overlay: true}), ), - takeUntil(inject(TuiDestroyService, {self: true})), + takeUntilDestroyed(inject(DestroyRef)), ) .subscribe(); }
projects/demo/src/modules/components/sheet/examples/1/index.ts
✓ Edit
Check projects/demo/src/modules/components/sheet/examples/1/index.ts with contents:
Ran GitHub Actions for 3d283ed83a4893834a5f3a22fca1ffcad7ec055d:
projects/demo/src/modules/components/combo-box/examples/2/request.service.ts
✓ https://github.com/taiga-family/taiga-ui/commit/faac4ad33121af670779ea95962112dfddb5df0c Edit
Modify projects/demo/src/modules/components/combo-box/examples/2/request.service.ts with contents:
• Follow the same steps as outlined for "projects/demo/src/modules/services/destroy/examples/1/component.ts".
--- +++ @@ -1,5 +1,6 @@ -import {inject, Injectable} from '@angular/core'; -import {TUI_DEFAULT_MATCHER, TuiDestroyService} from '@taiga-ui/cdk'; +import {inject, Injectable, DestroyRef} from '@angular/core'; +import {TUI_DEFAULT_MATCHER} from '@taiga-ui/cdk'; +import {takeUntilDestroyed} from '@angular/core/rxjs-interop'; import type {Observable} from 'rxjs'; import { delay, @@ -17,7 +18,7 @@ @Injectable() export class RequestService { - private readonly destroy$ = inject(TuiDestroyService, {self: true}); + private readonly destroyRef = inject(DestroyRef); private readonly request$ = new Subject(); // Imitating server request with switchMap + delay pair @@ -29,7 +30,7 @@ startWith(null), ), ), - takeUntil(this.destroy$), + takeUntilDestroyed(this.destroyRef), shareReplay({bufferSize: 1, refCount: true}), );
projects/demo/src/modules/components/combo-box/examples/2/request.service.ts
✓ Edit
Check projects/demo/src/modules/components/combo-box/examples/2/request.service.ts with contents:
Ran GitHub Actions for faac4ad33121af670779ea95962112dfddb5df0c:
projects/demo/src/modules/components/expand/expand.component.ts
✓ https://github.com/taiga-family/taiga-ui/commit/e6d12a3678ab8c883cae1a1197fb50c402c5b04c Edit
Modify projects/demo/src/modules/components/expand/expand.component.ts with contents:
• Follow the same steps as outlined for "projects/demo/src/modules/services/destroy/examples/1/component.ts".
--- +++ @@ -1,20 +1,20 @@ -import {ChangeDetectorRef, Component, ElementRef, inject, ViewChild} from '@angular/core'; +import {ChangeDetectorRef, Component, ElementRef, inject, ViewChild, DestroyRef} from '@angular/core'; import {changeDetection} from '@demo/emulate/change-detection'; import type {TuiDocExample} from '@taiga-ui/addon-doc'; -import {TuiDestroyService} from '@taiga-ui/cdk'; import {TUI_EXPAND_LOADED, TuiExpandComponent} from '@taiga-ui/core'; -import {takeUntil, timer} from 'rxjs'; +import {timer} from 'rxjs'; +import {takeUntilDestroyed} from '@angular/core/rxjs-interop'; @Component({ selector: 'example-expand', templateUrl: './expand.template.html', styleUrls: ['./expand.style.less'], changeDetection, - providers: [TuiDestroyService], + providers: [] }) export class ExampleTuiExpandComponent { private readonly cdr = inject(ChangeDetectorRef); - private readonly destroy$ = inject(TuiDestroyService, {self: true}); + private readonly destroyRef = inject(DestroyRef); @ViewChild(TuiExpandComponent, {read: ElementRef}) protected expand?: ElementRef; @@ -42,7 +42,7 @@ } timer(5000) - .pipe(takeUntil(this.destroy$)) + .pipe(takeUntilDestroyed(this.destroyRef)) .subscribe(() => { const event = new CustomEvent(TUI_EXPAND_LOADED, {bubbles: true});
projects/demo/src/modules/components/expand/expand.component.ts
✓ Edit
Check projects/demo/src/modules/components/expand/expand.component.ts with contents:
Ran GitHub Actions for e6d12a3678ab8c883cae1a1197fb50c402c5b04c:
projects/demo/src/modules/components/sheet-dialog/examples/1/index.ts
✓ https://github.com/taiga-family/taiga-ui/commit/a014f3d85722ec19b06623961e3987dc6238caaa Edit
Modify projects/demo/src/modules/components/sheet-dialog/examples/1/index.ts with contents:
• Follow the same steps as outlined for "projects/demo/src/modules/services/destroy/examples/1/component.ts".
--- +++ @@ -1,16 +1,16 @@ -import {Component, inject} from '@angular/core'; +import {Component, inject, DestroyRef} from '@angular/core'; import {changeDetection} from '@demo/emulate/change-detection'; import {encapsulation} from '@demo/emulate/encapsulation'; import {TuiSheetDialogService} from '@taiga-ui/addon-mobile'; -import {TuiDestroyService} from '@taiga-ui/cdk'; -import {Subject, switchMap, takeUntil} from 'rxjs'; +import {takeUntilDestroyed} from '@angular/core/rxjs-interop'; +import {Subject, switchMap} from 'rxjs'; @Component({ selector: 'tui-sheet-dialog-example-1', templateUrl: './index.html', encapsulation, changeDetection, - providers: [TuiDestroyService], + providers: [] }) export class TuiSheetDialogExample1 { protected readonly stream$ = new Subject(); @@ -21,7 +21,7 @@ switchMap(() => inject(TuiSheetDialogService).open('', {label: 'Simple sheet'}), ), - takeUntil(inject(TuiDestroyService, {self: true})), + takeUntilDestroyed(inject(DestroyRef)), ) .subscribe(); }
projects/demo/src/modules/components/sheet-dialog/examples/1/index.ts
✓ Edit
Check projects/demo/src/modules/components/sheet-dialog/examples/1/index.ts with contents:
Ran GitHub Actions for a014f3d85722ec19b06623961e3987dc6238caaa:
projects/demo/src/modules/components/dialog/examples/9/index.ts
✓ https://github.com/taiga-family/taiga-ui/commit/18a967f8075dca6bbf50869b9ad9138bef4b4eb7 Edit
Modify projects/demo/src/modules/components/dialog/examples/9/index.ts with contents:
• Follow the same steps as outlined for "projects/demo/src/modules/services/destroy/examples/1/component.ts".
--- +++ @@ -1,9 +1,9 @@ -import {Component, inject} from '@angular/core'; +import {Component, inject, DestroyRef} from '@angular/core'; import {FormControl} from '@angular/forms'; import {changeDetection} from '@demo/emulate/change-detection'; import {encapsulation} from '@demo/emulate/encapsulation'; -import {TuiDestroyService} from '@taiga-ui/cdk'; import {TuiDialogService} from '@taiga-ui/core'; +import {takeUntilDestroyed} from '@angular/core/rxjs-interop'; import {PolymorpheusComponent} from '@tinkoff/ng-polymorpheus'; import {takeUntil} from 'rxjs'; @@ -15,11 +15,11 @@ styleUrls: ['./index.less'], encapsulation, changeDetection, - providers: [TuiDestroyService], + providers: [] }) export class TuiDialogExampleComponent9 { private readonly dialogs = inject(TuiDialogService); - private readonly destroy$ = inject(TuiDestroyService, {self: true}); + private readonly destroyRef = inject(DestroyRef); protected readonly amountControl = new FormControl(100); @@ -32,7 +32,7 @@ amount: this.amountControl.value, }, }) - .pipe(takeUntil(this.destroy$)) + .pipe(takeUntilDestroyed(this.destroyRef)) .subscribe(); } }
projects/demo/src/modules/components/dialog/examples/9/index.ts
✓ Edit
Check projects/demo/src/modules/components/dialog/examples/9/index.ts with contents:
Ran GitHub Actions for 18a967f8075dca6bbf50869b9ad9138bef4b4eb7:
projects/demo/src/modules/services/table-bar/table-bar.component.ts
! No changes made Edit
Modify projects/demo/src/modules/services/table-bar/table-bar.component.ts with contents:
• Follow the same steps as outlined for "projects/demo/src/modules/services/destroy/examples/1/component.ts".
projects/demo/src/modules/services/table-bar/table-bar.component.ts
✗ Edit
Check projects/demo/src/modules/services/table-bar/table-bar.component.ts with contents:
I have finished reviewing the code for completeness. I did not find errors for sweep/demo_migrate_to_takeuntildestroyed_28eb3
.
💡 To recreate the pull request edit the issue title or description. Something wrong? Let us know.
This is an automated message generated by Sweep AI.
Description
You have to work in "projects/demo/" folder. Find all files with "takeUntil(this.destroy$)" and in each files make changes:
Checklist
- [X] Modify `projects/demo/src/modules/services/destroy/examples/1/component.ts` ✓ https://github.com/taiga-family/taiga-ui/commit/1a068a7f4ae0a5f2f013230f8addde247dcc6e34 [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/services/destroy/examples/1/component.ts) - [X] Running GitHub Actions for `projects/demo/src/modules/services/destroy/examples/1/component.ts` ✓ [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/services/destroy/examples/1/component.ts) - [X] Modify `projects/demo/src/modules/directives/for/examples/1/index.ts` ✓ https://github.com/taiga-family/taiga-ui/commit/4b9e3868204d56e779d16c6da08ea92c6793ec68 [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/directives/for/examples/1/index.ts) - [X] Running GitHub Actions for `projects/demo/src/modules/directives/for/examples/1/index.ts` ✓ [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/directives/for/examples/1/index.ts) - [X] Modify `projects/demo/src/modules/services/scroll/examples/1/index.ts` ✓ https://github.com/taiga-family/taiga-ui/commit/e7d70d2c412d60af21c30ce609c52a167b695c8e [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/services/scroll/examples/1/index.ts) - [X] Running GitHub Actions for `projects/demo/src/modules/services/scroll/examples/1/index.ts` ✓ [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/services/scroll/examples/1/index.ts) - [X] Modify `projects/demo/src/modules/app/app.component.ts` ✓ https://github.com/taiga-family/taiga-ui/commit/a870e1adff94e06ebdf8c21868a5ee10c93d8202 [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/app/app.component.ts) - [X] Running GitHub Actions for `projects/demo/src/modules/app/app.component.ts` ✓ [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/app/app.component.ts) - [X] Modify `projects/demo/src/modules/components/sheet/examples/1/index.ts` ✓ https://github.com/taiga-family/taiga-ui/commit/3d283ed83a4893834a5f3a22fca1ffcad7ec055d [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/components/sheet/examples/1/index.ts) - [X] Running GitHub Actions for `projects/demo/src/modules/components/sheet/examples/1/index.ts` ✓ [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/components/sheet/examples/1/index.ts) - [X] Modify `projects/demo/src/modules/components/combo-box/examples/2/request.service.ts` ✓ https://github.com/taiga-family/taiga-ui/commit/faac4ad33121af670779ea95962112dfddb5df0c [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/components/combo-box/examples/2/request.service.ts) - [X] Running GitHub Actions for `projects/demo/src/modules/components/combo-box/examples/2/request.service.ts` ✓ [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/components/combo-box/examples/2/request.service.ts) - [X] Modify `projects/demo/src/modules/components/expand/expand.component.ts` ✓ https://github.com/taiga-family/taiga-ui/commit/e6d12a3678ab8c883cae1a1197fb50c402c5b04c [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/components/expand/expand.component.ts) - [X] Running GitHub Actions for `projects/demo/src/modules/components/expand/expand.component.ts` ✓ [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/components/expand/expand.component.ts) - [X] Modify `projects/demo/src/modules/components/sheet-dialog/examples/1/index.ts` ✓ https://github.com/taiga-family/taiga-ui/commit/a014f3d85722ec19b06623961e3987dc6238caaa [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/components/sheet-dialog/examples/1/index.ts) - [X] Running GitHub Actions for `projects/demo/src/modules/components/sheet-dialog/examples/1/index.ts` ✓ [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/components/sheet-dialog/examples/1/index.ts) - [X] Modify `projects/demo/src/modules/components/dialog/examples/9/index.ts` ✓ https://github.com/taiga-family/taiga-ui/commit/18a967f8075dca6bbf50869b9ad9138bef4b4eb7 [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/components/dialog/examples/9/index.ts) - [X] Running GitHub Actions for `projects/demo/src/modules/components/dialog/examples/9/index.ts` ✓ [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/components/dialog/examples/9/index.ts) - [X] Modify `projects/demo/src/modules/services/table-bar/table-bar.component.ts` ! No changes made [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/services/table-bar/table-bar.component.ts) - [X] Running GitHub Actions for `projects/demo/src/modules/services/table-bar/table-bar.component.ts` ✗ [Edit](https://github.com/taiga-family/taiga-ui/edit/sweep/demo_migrate_to_takeuntildestroyed_28eb3/projects/demo/src/modules/services/table-bar/table-bar.component.ts)