mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-04-10 13:46:46 -04: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 {
|
public nextId(): string {
|
||||||
return this._prefix + (++this._lastId);
|
return this._prefix + (++this._lastId) + '-id';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user