This is an automated email from the ASF dual-hosted git repository. zhaoqingran pushed a commit to branch bugfix-template-upload in repository https://gitbox.apache.org/repos/asf/hertzbeat.git
commit 1248cc9e41defb73775730c3e8c7ebb18e72792f Author: zqr10159 <[email protected]> AuthorDate: Fri Sep 13 11:36:31 2024 +0800 ```fix(monitor-form): hide upload list for clarity in template input The nzUpload component's behavior has been modified to hide the upload list in the monitor-form's template input section. This change aims to simplify the user interface by removing unnecessary elements, thus enhancing usability and clarity. --- web-app/src/app/routes/monitor/monitor-form/monitor-form.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-app/src/app/routes/monitor/monitor-form/monitor-form.component.html b/web-app/src/app/routes/monitor/monitor-form/monitor-form.component.html index 0a365c693..d721ff16d 100644 --- a/web-app/src/app/routes/monitor/monitor-form/monitor-form.component.html +++ b/web-app/src/app/routes/monitor/monitor-form/monitor-form.component.html @@ -177,7 +177,7 @@ <nz-upload nzName="file" nzListType="text" - [nzShowUploadList]="true" + [nzShowUploadList]="false" [nzMultiple]="false" [nzLimit]="1" [nzCustomRequest]="handleTemplateInput" --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
