Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 982 | Rev 984 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 982 Rev 983
Línea 69... Línea 69...
69
 
69
 
70
  const onChangeAddress = (address = {}) => {
70
  const onChangeAddress = (address = {}) => {
71
    params.set('page', '1')
71
    params.set('page', '1')
Línea 72... Línea -...
72
    const addressEntries = Object.entries(address)
-
 
73
 
72
    const addressEntries = Object.entries(address)
74
    if (!addressEntries.length) {
73
 
75
      params.forEach((value, key) => {
74
    params.forEach((value, key) => {
76
        if (key !== 'page' || key !== 'keyword') params.delete(key)
75
      if (!['page', 'keyword'].includes(key)) params.delete(key)
77
      })
76
    })
78
    } else {
-
 
Línea 79... Línea 77...
79
      addressEntries.forEach(([key, value]) => value && params.set(key, value))
77
 
80
    }
78
    addressEntries.forEach(([key, value]) => value && params.set(key, value))
Línea 81... Línea 79...
81
 
79