Browse Source
Bugfix/fix style of apply current market price button (#1866)
* Fix styles
* Update changelog
pull/1868/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
3 additions and
14 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html
-
apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.scss
-
apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html
-
apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.scss
|
|
@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the unique job ids of the gather asset profile process |
|
|
|
- Fixed the style of the button to fetch the current market price |
|
|
|
|
|
|
|
## 1.255.0 - 2023-04-15 |
|
|
|
|
|
|
|
|
|
@ -33,7 +33,7 @@ |
|
|
|
<span class="ml-2" matTextSuffix>{{ data.currency }}</span> |
|
|
|
</mat-form-field> |
|
|
|
<button |
|
|
|
class="apply-current-market-price ml-2 no-min-width" |
|
|
|
class="ml-2 mt-1 no-min-width" |
|
|
|
mat-button |
|
|
|
title="Fetch market price" |
|
|
|
(click)="onFetchSymbolForDate()" |
|
|
|
|
|
@ -3,11 +3,5 @@ |
|
|
|
|
|
|
|
.mat-mdc-dialog-content { |
|
|
|
max-height: unset; |
|
|
|
|
|
|
|
.mat-mdc-button { |
|
|
|
&.apply-current-market-price { |
|
|
|
height: 56px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
@ -153,7 +153,7 @@ |
|
|
|
</mat-form-field> |
|
|
|
<button |
|
|
|
*ngIf="currentMarketPrice && (data.activity.type === 'BUY' || data.activity.type === 'SELL')" |
|
|
|
class="apply-current-market-price ml-2 no-min-width" |
|
|
|
class="ml-2 mt-1 no-min-width" |
|
|
|
mat-button |
|
|
|
title="Apply current market price" |
|
|
|
type="button" |
|
|
|
|
|
@ -15,12 +15,6 @@ |
|
|
|
color: var(--dark-primary-text); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.mat-mdc-button { |
|
|
|
&.apply-current-market-price { |
|
|
|
height: 56px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|