Updating id generation logic to avoid substring overlaps (#21181) (#21188)

This commit is contained in:
Aasim Khan
2022-11-10 13:42:17 -08:00
committed by GitHub
parent 59d32e8e89
commit a20b3a5d27

View File

@@ -14,7 +14,7 @@ export class IdGenerator {
}
public nextId(): string {
return this._prefix + (++this._lastId);
return this._prefix + (++this._lastId) + '-id';
}
}