Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 10061 Rev 10095
Línea 4... Línea 4...
4
import { LengthFilter, SearchInput, Table, TablePagination } from '../../components/TableComponents'
4
import { LengthFilter, SearchInput, Table, TablePagination } from '../../components/TableComponents'
5
import { useHistory } from 'react-router-dom'
5
import { useHistory } from 'react-router-dom'
6
import { addNotification } from '../../../redux/notification/notification.actions'
6
import { addNotification } from '../../../redux/notification/notification.actions'
7
import { useDispatch } from 'react-redux'
7
import { useDispatch } from 'react-redux'
8
import DeleteModal from '../../../shared/DeleteModal'
8
import DeleteModal from '../../../shared/DeleteModal'
-
 
9
import ContentTitle from '../../../shared/ContentTitle'
Línea 9... Línea 10...
9
 
10
 
10
const headers = [
11
const headers = [
11
    { key: "first_name", label: "Nombre", isSorteable: true },
12
    { key: "first_name", label: "Nombre", isSorteable: true },
12
    { key: "last_name", label: "Apellido", isSorteable: true },
13
    { key: "last_name", label: "Apellido", isSorteable: true },
Línea 59... Línea 60...
59
            }
60
            }
60
        })
61
        })
61
    }, [search, dataLength, pages.current])
62
    }, [search, dataLength, pages.current])
Línea 62... Línea 63...
62
 
63
 
63
    return (
64
    return (
64
        <>
65
        <ContentTitle title='Preselección'>
65
            <section className="content">
66
            <section className="content">
66
                <div className="container-fluid">
67
                <div className="container-fluid">
67
                    <div className="row">
68
                    <div className="row">
68
                        <div className="col-12">
69
                        <div className="col-12">
Línea 173... Línea 174...
173
                closeModal={() => setShowDeleteModal(false)}
174
                closeModal={() => setShowDeleteModal(false)}
174
                title="Esta seguro de borrar esta vacante?"
175
                title="Esta seguro de borrar esta vacante?"
175
                onComplete={() => setData({ ...data, items: data.items.filter((item) => item.actions.link_delete !== actionLink) })}
176
                onComplete={() => setData({ ...data, items: data.items.filter((item) => item.actions.link_delete !== actionLink) })}
176
                message="Vacante eliminada"
177
                message="Vacante eliminada"
177
            />
178
            />
178
        </>
179
        </ContentTitle>
179
    )
180
    )
180
}
181
}
181
export default MainView
182
export default MainView
182
183