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