Browse Source
Bugfix/add missing common module import in rule settings dialog (#4586)
* Add missing import
* Update changelog
pull/4591/head
Thomas Kaul
7 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
12 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/rule/rule-settings-dialog/rule-settings-dialog.component.ts
|
|
@ -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' |
|
|
|