Skip to content

Commit

Permalink
Merge branch 'v17'
Browse files Browse the repository at this point in the history
  • Loading branch information
EnochGao committed Jun 12, 2024
2 parents 25a5d03 + d80c777 commit 093c08a
Show file tree
Hide file tree
Showing 6 changed files with 1,177 additions and 791 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
</ng-container>

<div
[nzOrder]="controls.length"
class="nzx-query-btn"
nz-col
[nzOrder]="controls.length"
[nzSpan]="nzxBtnSpan || 24 / lineNumber"
>
<div nz-row nzJustify="end" nzAlign="middle">
Expand All @@ -28,7 +28,7 @@
nzType="primary"
type="button"
title="Enter"
(click)="search($event)"
(click)="search()"
>
{{ locale['query'] }}
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,7 @@ export class NzxConfigurableQueryComponent
}

/** 查询 */
search(event?: Event): void {
if (event) {
event.stopPropagation();
}
search(): void {
if (this.queryForm.invalid) {
updateControlStatus(this.queryForm);
return;
Expand Down
Loading

0 comments on commit 093c08a

Please sign in to comment.