Ignore:
Timestamp:
2021-09-29T15:47:16+13:00 (3 years ago)
Author:
cstephen
Message:

Fix text download. Only show WordTimingSelector in dev mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-interfaces-dev/atea/korero-maori-asr/src/components/TranscriptionItem.vue

    r35489 r35528  
    124124            const fileName = buildDownloadableFileName(this.transcription.fileName, "txt");
    125125
    126             const blob = new Blob([ this.transcription.transcription ], { type: "text/plain;charset=utf-8" });
     126            const blob = new Blob([ this.$refs.editor.words.map(w => w.word).join(" ") ], { type: "text/plain;charset=utf-8" });
    127127            saveAs(blob, fileName);
    128128        },
Note: See TracChangeset for help on using the changeset viewer.