Browse Source
Merge branch 'main' into task/migrate-auth-page-component-to-standalone
pull/5695/head
Thomas Kaul
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
31 additions and
25 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.scss
-
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html
|
|
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Improved the spacing around the buttons in the holding detail dialog |
|
|
- Refactored the auth page to standalone |
|
|
- Refactored the auth page to standalone |
|
|
|
|
|
|
|
|
## 2.206.0 - 2025-10-04 |
|
|
## 2.206.0 - 2025-10-04 |
|
|
|
|
|
@ -8,5 +8,9 @@ |
|
|
aspect-ratio: 16 / 9; |
|
|
aspect-ratio: 16 / 9; |
|
|
margin: 0 -0.5rem; |
|
|
margin: 0 -0.5rem; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.button-container { |
|
|
|
|
|
gap: 0.5rem; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
@ -424,12 +424,12 @@ |
|
|
(dataSource?.data.length > 0 && |
|
|
(dataSource?.data.length > 0 && |
|
|
data.hasPermissionToReportDataGlitch === true) |
|
|
data.hasPermissionToReportDataGlitch === true) |
|
|
) { |
|
|
) { |
|
|
|
|
|
<hr /> |
|
|
<div class="row"> |
|
|
<div class="row"> |
|
|
<div class="col"> |
|
|
<div class="col"> |
|
|
<hr /> |
|
|
<div class="button-container d-flex flex-wrap"> |
|
|
@if (data.hasPermissionToAccessAdminControl) { |
|
|
@if (data.hasPermissionToAccessAdminControl) { |
|
|
<a |
|
|
<a |
|
|
class="mr-2" |
|
|
|
|
|
mat-stroked-button |
|
|
mat-stroked-button |
|
|
[queryParams]="{ |
|
|
[queryParams]="{ |
|
|
assetProfileDialog: true, |
|
|
assetProfileDialog: true, |
|
|
@ -453,6 +453,7 @@ |
|
|
} |
|
|
} |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
</div> |
|
|
} |
|
|
} |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|