Browse Source
Merge branch 'main' into bugfix/fix-creation-of-historical-data
pull/594/head
Thomas Kaul
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
5 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/dialog-footer/dialog-footer.component.html
-
apps/client/src/app/components/dialog-footer/dialog-footer.component.scss
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
- Fixed the creation of historical data in the admin control panel (upsert instead of update) |
|
|
- Fixed the creation of historical data in the admin control panel (upsert instead of update) |
|
|
|
|
|
- Fixed the scrolling issue in the position detail dialog on mobile |
|
|
|
|
|
|
|
|
## 1.97.0 - 28.12.2021 |
|
|
## 1.97.0 - 28.12.2021 |
|
|
|
|
|
|
|
|
|
@ -1,5 +1,6 @@ |
|
|
<button |
|
|
<button |
|
|
*ngIf="deviceType === 'mobile'" |
|
|
*ngIf="deviceType === 'mobile'" |
|
|
|
|
|
class="mt-2" |
|
|
mat-button |
|
|
mat-button |
|
|
(click)="onClickCloseButton()" |
|
|
(click)="onClickCloseButton()" |
|
|
> |
|
|
> |
|
|
|
@ -1,4 +1,7 @@ |
|
|
:host { |
|
|
:host { |
|
|
display: flex; |
|
|
display: flex; |
|
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
|
margin-bottom: 0; |
|
|
min-height: 0; |
|
|
min-height: 0; |
|
|
|
|
|
padding: 0; |
|
|
} |
|
|
} |
|
|