Don't use extra variable for one-time use.

This commit is contained in:
Patrick Jentsch 2019-09-02 15:24:09 +02:00
parent d30980bfa9
commit ff837aa943
2 changed files with 4 additions and 6 deletions

View File

@ -16,7 +16,7 @@ class CorpusList extends List {
_update(patch) {
var item, operation, pathArray, valueName;
var item, operation, pathArray;
for (operation of patch) {
/* "/corpusId/valueName" -> ["corpusId", "valueName"] */
@ -33,8 +33,7 @@ class CorpusList extends List {
break;
case "replace":
item = this.get("id", pathArray[0])[0];
valueName = pathArray[1];
switch(valueName) {
switch(pathArray[1]) {
case "description":
item.values({"description": operation.value});
break;

View File

@ -17,7 +17,7 @@ class JobList extends List {
_update(patch) {
var item, jobStatusElement, newStatusColor, operation, pathArray, status,
statusColor, valueName;
statusColor;
for (operation of patch) {
/* "/jobId/valueName" -> ["jobId", "valueName"] */
@ -34,8 +34,7 @@ class JobList extends List {
break;
case "replace":
item = this.get("id", pathArray[0])[0];
valueName = pathArray[1];
switch(valueName) {
switch(pathArray[1]) {
case "description":
item.values({"description": operation.value});
break;