Browse Source
Bugfix/improve loading state when customizing rule thresholds on X-ray page (#7039)
* Improve loading state
* Update changelog
pull/7040/head
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
3 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/rules/rules.component.html
|
|
@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Upgraded `bull-board` from version `7.1.5` to `7.2.1` |
|
|
- Upgraded `bull-board` from version `7.1.5` to `7.2.1` |
|
|
- Upgraded `date-fns` from version `4.1.0` to `4.4.0` |
|
|
- Upgraded `date-fns` from version `4.1.0` to `4.4.0` |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Improved the loading state when customizing the rule thresholds on the _X-ray_ page |
|
|
|
|
|
|
|
|
## 3.10.0 - 2026-06-13 |
|
|
## 3.10.0 - 2026-06-13 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
@ -3,9 +3,7 @@ |
|
|
<div class="col"> |
|
|
<div class="col"> |
|
|
@if (isLoading) { |
|
|
@if (isLoading) { |
|
|
<gf-rule [isLoading]="true" /> |
|
|
<gf-rule [isLoading]="true" /> |
|
|
} |
|
|
} @else if (rules) { |
|
|
|
|
|
|
|
|
@if (rules !== null && rules !== undefined) { |
|
|
|
|
|
@for (rule of rules; track rule.key) { |
|
|
@for (rule of rules; track rule.key) { |
|
|
<gf-rule |
|
|
<gf-rule |
|
|
[categoryName]="categoryName" |
|
|
[categoryName]="categoryName" |
|
|
|