Skip to content
Snippets Groups Projects
Commit 15541ee6 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #9873 TIME 0:10 fix if cond

(cherry picked from commit 04984a93)
parent e0624eea
No related branches found
No related tags found
No related merge requests found
......@@ -310,7 +310,7 @@ export class TemplateAdministrationComponent implements OnInit {
return;
}
} 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);
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