mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
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