mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
this fixes Github issue #5520 * added nessessary imports to ShowAccessTokenDialog * removed module * set dialog component to standalone * updated import in RegisterPageComponentpull/5525/head
3 changed files with 28 additions and 39 deletions
@ -1,34 +0,0 @@ |
|||||
import { ClipboardModule } from '@angular/cdk/clipboard'; |
|
||||
import { TextFieldModule } from '@angular/cdk/text-field'; |
|
||||
import { CommonModule } from '@angular/common'; |
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; |
|
||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
|
||||
import { MatButtonModule } from '@angular/material/button'; |
|
||||
import { MatCheckboxModule } from '@angular/material/checkbox'; |
|
||||
import { MatDialogModule } from '@angular/material/dialog'; |
|
||||
import { MatFormFieldModule } from '@angular/material/form-field'; |
|
||||
import { MatInputModule } from '@angular/material/input'; |
|
||||
import { MatStepperModule } from '@angular/material/stepper'; |
|
||||
import { RouterModule } from '@angular/router'; |
|
||||
|
|
||||
import { ShowAccessTokenDialog } from './show-access-token-dialog.component'; |
|
||||
|
|
||||
@NgModule({ |
|
||||
declarations: [ShowAccessTokenDialog], |
|
||||
imports: [ |
|
||||
ClipboardModule, |
|
||||
CommonModule, |
|
||||
FormsModule, |
|
||||
MatButtonModule, |
|
||||
MatCheckboxModule, |
|
||||
MatDialogModule, |
|
||||
MatFormFieldModule, |
|
||||
MatInputModule, |
|
||||
MatStepperModule, |
|
||||
ReactiveFormsModule, |
|
||||
RouterModule, |
|
||||
TextFieldModule |
|
||||
], |
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA] |
|
||||
}) |
|
||||
export class ShowAccessTokenDialogModule {} |
|
Loading…
Reference in new issue