Merge pull request #8741 from opf/trial-creation-modal-changes-size-in-error

[34355] EE: Trial creation modal changes size when error is shown
pull/8771/head
ulferts 4 years ago committed by GitHub
commit 837e7bb92a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      frontend/src/app/components/enterprise/enterprise-modal/enterprise-trial-form/ee-trial-form.component.html
  2. 2
      frontend/src/app/components/enterprise/enterprise-modal/enterprise-trial-form/ee-trial-form.component.sass
  3. 3
      frontend/src/app/components/enterprise/enterprise-modal/enterprise-trial-form/ee-trial-form.component.ts

@ -43,7 +43,7 @@
formControlName="email" (blur)="checkMailField()">
</div>
</div>
<div *ngIf="eeTrialService.emailError" class="form--field-instructions">{{ eeTrialService.errorMsg }}</div>
<div *ngIf="eeTrialService.emailError" class="form--field-instructions ee-trial-email-error">{{ eeTrialService.errorMsg }}</div>
</div>
<div class="form--field -wide-label -required">
<label class="form--label" for="trial-domain-name">{{ text.label_domain }}</label>

@ -37,7 +37,8 @@ const newsletterURL = 'https://www.openproject.com/newsletter/';
@Component({
selector: 'enterprise-trial-form',
templateUrl: './ee-trial-form.component.html'
templateUrl: './ee-trial-form.component.html',
styleUrls: ['./ee-trial-form.component.sass']
})
export class EETrialFormComponent {
// Retain used values

Loading…
Cancel
Save