Compare commits

...

1 Commits

Author SHA1 Message Date
Kuba Orlik fde2f7a34e Omit outp oint if not provieded 2021-10-29 20:26:48 +02:00
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>`;
}
}