Browse Source

Merge branch 'main' into bugfix/fix-creation-of-historical-data

pull/594/head
Thomas Kaul 4 years ago
committed by GitHub
parent
commit
d0ce324be8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 1
      apps/client/src/app/components/dialog-footer/dialog-footer.component.html
  3. 3
      apps/client/src/app/components/dialog-footer/dialog-footer.component.scss

1
CHANGELOG.md

@ -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
apps/client/src/app/components/dialog-footer/dialog-footer.component.html

@ -1,5 +1,6 @@
<button <button
*ngIf="deviceType === 'mobile'" *ngIf="deviceType === 'mobile'"
class="mt-2"
mat-button mat-button
(click)="onClickCloseButton()" (click)="onClickCloseButton()"
> >

3
apps/client/src/app/components/dialog-footer/dialog-footer.component.scss

@ -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;
} }

Loading…
Cancel
Save