Skip to content
Snippets Groups Projects
Verified Commit 04984a93 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #9873 TIME 0:10 fix if cond

parent 86264384
No related branches found
No related tags found
No related merge requests found
...@@ -310,7 +310,7 @@ export class TemplateAdministrationComponent implements OnInit { ...@@ -310,7 +310,7 @@ export class TemplateAdministrationComponent implements OnInit {
return; return;
} }
} else if (this.template.template_target != 'acknowledgementReceipt' && this.template.template_type == 'OFFICE') { } else if (this.template.template_target != 'acknowledgementReceipt' && this.template.template_type == 'OFFICE') {
if (!this.template.template_style || (this.template.template_style && !this.template.jnlpUniqueId && !this.template.template_file_name)) { if (!this.template.template_style || (this.template.template_style && !this.template.jnlpUniqueId && !this.template.template_file_name && !this.template.uploadedFile)) {
alert(this.lang.editModelFirst); alert(this.lang.editModelFirst);
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment