fix: nextId append the id of document

This commit is contained in:
mario.gk 2020-06-30 16:38:58 +08:00
parent 15c8988a24
commit 80a5c93934

View File

@ -131,7 +131,7 @@ export class DocumentModel {
* id
*/
nextId() {
return (++this.seqId).toString(36).toLocaleLowerCase();
return this.id + (++this.seqId).toString(36).toLocaleLowerCase();
}
/**