Bugfix/add missing common module import in rule settings dialog (#4586)
* Add missing import * Update changelog
This commit is contained in:
parent
e67ccea673
commit
dfa940c1b4
@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
- Renamed `User` to `user` in the `Subscription` database schema
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed an issue in the settings dialog to customize the rule thresholds of the _X-ray_ page (experimental)
|
||||
|
||||
## 2.154.0 - 2025-04-21
|
||||
|
||||
### Added
|
||||
|
@ -1,5 +1,6 @@
|
||||
import { XRayRulesSettings } from '@ghostfolio/common/interfaces';
|
||||
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { Component, Inject } from '@angular/core';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { MatButtonModule } from '@angular/material/button';
|
||||
@ -13,7 +14,13 @@ import { MatSliderModule } from '@angular/material/slider';
|
||||
import { IRuleSettingsDialogParams } from './interfaces/interfaces';
|
||||
|
||||
@Component({
|
||||
imports: [FormsModule, MatButtonModule, MatDialogModule, MatSliderModule],
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
MatButtonModule,
|
||||
MatDialogModule,
|
||||
MatSliderModule
|
||||
],
|
||||
selector: 'gf-rule-settings-dialog',
|
||||
styleUrls: ['./rule-settings-dialog.scss'],
|
||||
templateUrl: './rule-settings-dialog.html'
|
||||
|
Loading…
x
Reference in New Issue
Block a user