Add ^S save binding to editor; fix bullet point delete bug

This commit is contained in:
garrettmills
2020-02-14 11:24:51 -06:00
parent 9f361896ee
commit 407d26eb05
3 changed files with 10 additions and 3 deletions

View File

@@ -127,7 +127,7 @@ export class HostComponent implements OnInit {
const newLines = [];
this.liItems.toArray().forEach((elem, index) => {
if ( index !== i ) {
newLines.push(elem.innerText ? elem.innerText.trim() : '');
newLines.push(elem.nativeElement.innerText ? elem.nativeElement.innerText.trim() : '');
}
});