Skip to content

Commit

Permalink
switch to infiniteScrollDirective now that module is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
vleague2 committed Dec 3, 2024
1 parent 7243d37 commit dc574bd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { LayoutModule } from "@angular/cdk/layout";
import { NgModule } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
import { InfiniteScrollModule } from "ngx-infinite-scroll";
import { InfiniteScrollDirective } from "ngx-infinite-scroll";

Check warning on line 7 in apps/web/src/app/app.module.ts

View check run for this annotation

Codecov / codecov/patch

apps/web/src/app/app.module.ts#L6-L7

Added lines #L6 - L7 were not covered by tests
import { AppComponent } from "./app.component";
import { CoreModule } from "./core";
Expand All @@ -23,7 +23,7 @@ import { WildcardRoutingModule } from "./wildcard-routing.module";
BrowserAnimationsModule,
FormsModule,
CoreModule,
InfiniteScrollModule,
InfiniteScrollDirective,
DragDropModule,
LayoutModule,
OssRoutingModule,
Expand Down
6 changes: 3 additions & 3 deletions apps/web/src/app/shared/shared.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CommonModule, DatePipe } from "@angular/common";
import { NgModule } from "@angular/core";
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
import { RouterModule } from "@angular/router";
import { InfiniteScrollModule } from "ngx-infinite-scroll";
import { InfiniteScrollDirective } from "ngx-infinite-scroll";

import { JslibModule } from "@bitwarden/angular/jslib.module";
import {
Expand Down Expand Up @@ -49,7 +49,7 @@ import "./locales";
DragDropModule,
FormsModule,
ReactiveFormsModule,
InfiniteScrollModule,
InfiniteScrollDirective,
RouterModule,
JslibModule,

Expand Down Expand Up @@ -86,7 +86,7 @@ import "./locales";
DragDropModule,
FormsModule,
ReactiveFormsModule,
InfiniteScrollModule,
InfiniteScrollDirective,
RouterModule,
JslibModule,

Expand Down
4 changes: 2 additions & 2 deletions bitwarden_license/bit-web/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { NgModule } from "@angular/core";
import { FormsModule, ReactiveFormsModule } from "@angular/forms";
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
import { RouterModule } from "@angular/router";
import { InfiniteScrollModule } from "ngx-infinite-scroll";
import { InfiniteScrollDirective } from "ngx-infinite-scroll";

import { JslibModule } from "@bitwarden/angular/jslib.module";
import { CoreModule } from "@bitwarden/web-vault/app/core";
Expand Down Expand Up @@ -36,7 +36,7 @@ import { FreeFamiliesSponsorshipPolicyComponent } from "./billing/policies/free-
FormsModule,
ReactiveFormsModule,
CoreModule,
InfiniteScrollModule,
InfiniteScrollDirective,
DragDropModule,
AppRoutingModule,
OssRoutingModule,
Expand Down

0 comments on commit dc574bd

Please sign in to comment.