mirror of
https://github.com/nasa/openmct.git
synced 2025-06-22 09:08:43 +00:00
[Code Style] Rename shadowing variables
This commit is contained in:
@ -92,8 +92,8 @@ define(
|
||||
if ((response || {}).status === CONFLICT) {
|
||||
error.key = "revision";
|
||||
// Load the updated model, then reject the promise
|
||||
return this.get(key).then(function (response) {
|
||||
error.model = response[SRC];
|
||||
return this.get(key).then(function (res) {
|
||||
error.model = res[SRC];
|
||||
return $q.reject(error);
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user