Skip to content

Commit

Permalink
fix(tenant-management): fix request search value of abp-button and ha…
Browse files Browse the repository at this point in the history
…ndle form submit
  • Loading branch information
thediaval committed Aug 7, 2019
1 parent 1716574 commit 0047492
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ <h3>{{ selectedModalContent.title | abpLocalization }}</h3>
</button>
<abp-button
[requestType]="['POST', 'PUT', 'DELETE']"
requestURLContainSearchValue="change-password"
requestURLContainSearchValue="multi-tenancy"
iconClass="fa fa-check"
(click)="save()"
>{{ 'AbpIdentity::Save' | abpLocalization }}</abp-button
Expand All @@ -114,7 +114,7 @@ <h3>{{ selectedModalContent.title | abpLocalization }}</h3>
</abp-modal>

<ng-template #tenantModalTemplate>
<form [formGroup]="tenantForm">
<form [formGroup]="tenantForm" (ngSubmit)="save()">
<div class="mt-2">
<div class="form-group">
<label for="name">{{ 'AbpTenantManagement::TenantName' | abpLocalization }}</label>
Expand All @@ -125,7 +125,7 @@ <h3>{{ selectedModalContent.title | abpLocalization }}</h3>
</ng-template>

<ng-template #connectionStringModalTemplate>
<form [formGroup]="defaultConnectionStringForm">
<form [formGroup]="defaultConnectionStringForm" (ngSubmit)="save()">
<div class="mt-2">
<div class="form-group">
<div class="form-check">
Expand Down

0 comments on commit 0047492

Please sign in to comment.