arreglar columnas comunidad de viviendas
This commit is contained in:
parent
b89bcd68bb
commit
7fc01af71e
|
@ -493,15 +493,6 @@ const Communities = () => {
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
||||||
const headerOptions = (
|
|
||||||
<>
|
|
||||||
<p>
|
|
||||||
Opciones{' '}
|
|
||||||
<FontAwesomeIcon icon={faEllipsis} style={{ color: '#D7A86E' }} />
|
|
||||||
</p>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="grid">
|
<div className="grid">
|
||||||
<div className="col-12">
|
<div className="col-12">
|
||||||
|
@ -537,21 +528,25 @@ const Communities = () => {
|
||||||
></Column>
|
></Column>
|
||||||
<Column
|
<Column
|
||||||
field="name"
|
field="name"
|
||||||
|
sortable
|
||||||
header={headerName}
|
header={headerName}
|
||||||
style={{ flexGrow: 1, flexBasis: '160px' }}
|
style={{ flexGrow: 1, flexBasis: '160px' }}
|
||||||
></Column>
|
></Column>
|
||||||
<Column
|
<Column
|
||||||
field="province"
|
field="province"
|
||||||
|
sortable
|
||||||
header={headerProvince}
|
header={headerProvince}
|
||||||
style={{ flexGrow: 1, flexBasis: '160px' }}
|
style={{ flexGrow: 1, flexBasis: '160px' }}
|
||||||
></Column>
|
></Column>
|
||||||
<Column
|
<Column
|
||||||
field="canton"
|
field="canton"
|
||||||
|
sortable
|
||||||
header={headerCanton}
|
header={headerCanton}
|
||||||
style={{ flexGrow: 1, flexBasis: '160px' }}
|
style={{ flexGrow: 1, flexBasis: '160px' }}
|
||||||
></Column>
|
></Column>
|
||||||
<Column
|
<Column
|
||||||
field="district"
|
field="district"
|
||||||
|
sortable
|
||||||
header={headerDistrict}
|
header={headerDistrict}
|
||||||
style={{ flexGrow: 1, flexBasis: '160px' }}
|
style={{ flexGrow: 1, flexBasis: '160px' }}
|
||||||
></Column>
|
></Column>
|
||||||
|
@ -562,15 +557,16 @@ const Communities = () => {
|
||||||
></Column>
|
></Column>
|
||||||
<Column
|
<Column
|
||||||
field="num_houses"
|
field="num_houses"
|
||||||
|
sortable
|
||||||
header={headerNumberHouses}
|
header={headerNumberHouses}
|
||||||
style={{ flexGrow: 1, flexBasis: '180px' }}
|
style={{ flexGrow: 1, flexBasis: '180px' }}
|
||||||
></Column>
|
></Column>
|
||||||
<Column
|
<Column
|
||||||
field="name_admin"
|
field="name_admin"
|
||||||
header={headerAdministrator}
|
sortable
|
||||||
style={{ flexGrow: 1, flexBasis: '180px' }}
|
style={{ flexGrow: 1, flexBasis: '180px' }}
|
||||||
></Column>
|
></Column>
|
||||||
<Column header={headerOptions} body={actionsCommunity}></Column>
|
<Column body={actionsCommunity}></Column>
|
||||||
</DataTable>
|
</DataTable>
|
||||||
<Dialog
|
<Dialog
|
||||||
visible={deleteCommunityDialog}
|
visible={deleteCommunityDialog}
|
||||||
|
|
Loading…
Reference in New Issue