| Línea 1... |
Línea 1... |
| 1 |
/* eslint-disable no-mixed-spaces-and-tabs */
|
1 |
/* eslint-disable no-mixed-spaces-and-tabs */
|
| 2 |
import React, { useState, useEffect } from 'react'
|
2 |
import React, { useState, useEffect } from 'react'
|
| 3 |
import { Card } from 'react-bootstrap'
|
3 |
import { Card } from 'react-bootstrap'
|
| 4 |
import { useDispatch } from 'react-redux'
|
4 |
import { useDispatch } from 'react-redux'
|
| 5 |
import { Link } from 'react-router-dom'
|
- |
|
| 6 |
import axios from 'axios'
|
5 |
import axios from 'axios'
|
| 7 |
import { LengthFilter, SearchInput, Table, TablePagination } from '../../../recruitment_and_selection/components/TableComponents'
|
6 |
import { LengthFilter, SearchInput, Table, TablePagination } from '../../../recruitment_and_selection/components/TableComponents'
|
| 8 |
import { addNotification } from '../../../redux/notification/notification.actions'
|
7 |
import { addNotification } from '../../../redux/notification/notification.actions'
|
| 9 |
import ContentTitle from '../../../shared/ContentTitle'
|
8 |
import ContentTitle from '../../../shared/ContentTitle'
|
| 10 |
import DeleteModal from '../../../shared/DeleteModal'
|
9 |
import DeleteModal from '../../../shared/DeleteModal'
|
| Línea 65... |
Línea 64... |
| 65 |
}
|
64 |
}
|
| 66 |
})
|
65 |
})
|
| 67 |
}, [search, dataLength, pages.current])
|
66 |
}, [search, dataLength, pages.current])
|
| Línea 68... |
Línea 67... |
| 68 |
|
67 |
|
| 69 |
return (
|
68 |
return (
|
| - |
|
69 |
<ContentTitle title={`Metas del objetivo: ${objetive.titleObjective}`}>
|
| - |
|
70 |
<div className="col-sm-12 d-flex flex-column p-2">
|
| - |
|
71 |
<div className="m-2">
|
| - |
|
72 |
<strong>Descripción:</strong>
|
| - |
|
73 |
<br />
|
| - |
|
74 |
<span className="xd">{objetive.descriptionObjective}</span>
|
| - |
|
75 |
</div>
|
| - |
|
76 |
|
| - |
|
77 |
<div className="col-sm-12 mt-3">
|
| - |
|
78 |
<a href="/planning-objectives-and-goals/objectives" className="btn btn-primary">
|
| - |
|
79 |
<i className="fa fa-arrow-left mr-1" />
|
| - |
|
80 |
Ir atras
|
| - |
|
81 |
</a>
|
| - |
|
82 |
</div>
|
| 70 |
<ContentTitle title={objetive.titleObjective}>
|
83 |
</div>
|
| 71 |
<section className="content">
|
84 |
<section className="content">
|
| 72 |
<div className="container-fluid">
|
85 |
<div className="container-fluid">
|
| 73 |
<div className="row">
|
86 |
<div className="row">
|
| 74 |
<div className="col-12">
|
87 |
<div className="col-12">
|