Skip to content

Commit 66646f2

Browse files
Log transcript
1 parent ea3e954 commit 66646f2

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

backend/analysis/models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,11 +399,14 @@ def task_status(self):
399399
return result.status
400400
return None
401401

402+
@property
402403
def xlsx_results_available(self):
403404
return bool(self.annotation_file) and self.task_success()
404405

406+
@property
405407
def cha_results_available(self):
406408
return bool(self.annotated_chat_file) and self.task_success()
407409

410+
@property
408411
def form_results_available(self):
409412
return bool(self.form_file) and self.task_success()

frontend/src/app/transcript/transcript.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export class TranscriptComponent implements OnInit, OnDestroy {
175175
tams,
176176
this.corpus.method_category,
177177
); // group methods
178-
178+
console.log(this.transcript);
179179
if (this.shouldAnalyse()) {
180180
this.analyseAsync();
181181
}

0 commit comments

Comments
 (0)