Omit outp oint if not provieded

This commit is contained in:
Kuba Orlik 2021-10-29 20:26:48 +02:00
parent a804b52176
commit fde2f7a34e
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export class MediaEntry extends Entry {
return /* HTML */ `<entry
producer="${this.producer.id}"
in="${this.in_point}"
out="${this.out_point}"
${this.out_point ? `out="${this.out_point}"` : ""}
></entry>`;
}
}