Merge pull request #11798 from vvlladd28/bug/recource-library/select-recource-type

Fixed the inability to edit resource type in resource library when created resource
This commit is contained in:
Igor Kulikov 2024-10-03 15:47:43 +03:00 committed by GitHub
commit a39e0a8536
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,7 +92,7 @@ export class ResourcesLibraryComponent extends EntityComponent<Resource> impleme
override updateFormState(): void { override updateFormState(): void {
super.updateFormState(); super.updateFormState();
if (this.isEdit && this.entityForm) { if (this.isEdit && this.entityForm && !this.isAdd) {
this.entityForm.get('resourceType').disable({ emitEvent: false }); this.entityForm.get('resourceType').disable({ emitEvent: false });
if (this.entityForm.get('resourceType').value !== ResourceType.JS_MODULE) { if (this.entityForm.get('resourceType').value !== ResourceType.JS_MODULE) {
this.entityForm.get('fileName').disable({ emitEvent: false }); this.entityForm.get('fileName').disable({ emitEvent: false });