Archived
Updating id generation logic to avoid substring overlaps (#21181)
This commit is contained in:
@@ -14,7 +14,7 @@ export class IdGenerator {
|
||||
}
|
||||
|
||||
public nextId(): string {
|
||||
return this._prefix + (++this._lastId);
|
||||
return this._prefix + (++this._lastId) + '-id';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user