Use correct pointer string
This commit is contained in:
parent
78b33798c6
commit
97b937f015
1 changed files with 1 additions and 1 deletions
|
@ -461,7 +461,7 @@ models.service('models', ['$rootScope', '$filter', function($rootScope, $filter)
|
||||||
if (this.version !== null && parseInt(this.version.charAt(0)) >= 1) {
|
if (this.version !== null && parseInt(this.version.charAt(0)) >= 1) {
|
||||||
// pointers are being validated, they're more reliable than
|
// pointers are being validated, they're more reliable than
|
||||||
// fullName (e.g. if fullName contains spaces)
|
// fullName (e.g. if fullName contains spaces)
|
||||||
return activeBuffer.id;
|
return "0x"+activeBuffer.id;
|
||||||
} else {
|
} else {
|
||||||
return activeBuffer.fullName;
|
return activeBuffer.fullName;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue