(entry: TranscriptEntry)
| 1818 | } |
| 1819 | |
| 1820 | appendTranscriptEntry(entry: TranscriptEntry): void { |
| 1821 | this.state.transcriptEntries.push(entry); |
| 1822 | const component = this.createTranscriptComponent(entry); |
| 1823 | if (component) { |
| 1824 | markTranscriptComponent(component, entry); |
| 1825 | this.state.transcriptContainer.addChild(component); |
| 1826 | } |
| 1827 | const trimmed = this.trimTranscriptWindow(); |
| 1828 | const merged = this.mergeCurrentTurnSteps(); |
| 1829 | if (component || trimmed || merged) { |
| 1830 | this.state.ui.requestRender(); |
| 1831 | } |
| 1832 | } |
| 1833 | |
| 1834 | private appendApprovalTranscriptEntry( |
| 1835 | request: ApprovalRequest, |
no test coverage detected