Commit 2041b828 authored by Mark Harding's avatar Mark Harding

(fix): right padding for btc modal and closes on save - closes #1828

1 merge request!508Epic/37 wire
Pipeline #79194234 running with stages
m-btc__settings {
p {
padding-right: $minds-padding * 2;
}
label {
font-weight: 600;
}
......
......@@ -5,6 +5,7 @@ import {
} from '@angular/core';
import { Client } from '../../../services/api';
import { OverlayModalService } from '../../../services/ux/overlay-modal';
@Component({
selector: 'm-btc__settings',
......@@ -19,6 +20,7 @@ export class BTCSettingsComponent {
constructor(
private client: Client,
private cd: ChangeDetectorRef,
private overlayModal: OverlayModalService,
) { }
ngOnInit() {
......@@ -38,6 +40,7 @@ export class BTCSettingsComponent {
});
this.saving = false;
this.detectChanges();
this.overlayModal.dismiss();
}
detectChanges() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment