1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 08:19:40 +02:00

feat(react): add FileUploadField and FileUploadForm components [EE-2336] (#6350)

This commit is contained in:
Marcelo Rydel 2022-01-05 10:39:34 -03:00 committed by GitHub
parent 07e7fbd270
commit 8dbb802fb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 235 additions and 15 deletions

View file

@ -46,7 +46,9 @@ class KubeCreateCustomTemplateViewController {
}
onChangeFile(file) {
this.formValues.File = file;
return this.$async(async () => {
this.formValues.File = file;
});
}
async createCustomTemplate() {