fix some const
This commit is contained in:
parent
9123425a7c
commit
d9ca869c81
|
@ -35472,7 +35472,7 @@
|
||||||
},
|
},
|
||||||
hasAllGlobalHistory:function(key,filter,last){
|
hasAllGlobalHistory:function(key,filter,last){
|
||||||
if(!key||!filter) return;
|
if(!key||!filter) return;
|
||||||
const stopped=false;
|
let stopped=false;
|
||||||
_status.globalHistory.forEach(value=>{
|
_status.globalHistory.forEach(value=>{
|
||||||
if(value[key]){
|
if(value[key]){
|
||||||
if(last&&value[key].includes(last)&&!stopped){
|
if(last&&value[key].includes(last)&&!stopped){
|
||||||
|
@ -35491,7 +35491,7 @@
|
||||||
},
|
},
|
||||||
checkAllGlobalHistory:function(key,filter,last){
|
checkAllGlobalHistory:function(key,filter,last){
|
||||||
if(!key||!filter) return;
|
if(!key||!filter) return;
|
||||||
const stopped=false;
|
let stopped=false;
|
||||||
_status.globalHistory.forEach(value=>{
|
_status.globalHistory.forEach(value=>{
|
||||||
if(value[key]){
|
if(value[key]){
|
||||||
if(last&&value[key].includes(last)&&!stopped){
|
if(last&&value[key].includes(last)&&!stopped){
|
||||||
|
|
Loading…
Reference in New Issue