._.
This commit is contained in:
parent
a6f9918c43
commit
a718b5a8b1
@ -223,7 +223,6 @@ const Accessories = () => {
|
||||
<table className="table table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>Название</th>
|
||||
<th>Объем</th>
|
||||
<th>Вес</th>
|
||||
@ -235,7 +234,6 @@ const Accessories = () => {
|
||||
<tbody>
|
||||
{accessories.map((accessory) => (
|
||||
<tr key={accessory.id}>
|
||||
<td>{accessory.id}</td>
|
||||
<td>{accessory.name}</td>
|
||||
<td>{accessory.volume}</td>
|
||||
<td>{accessory.weight}</td>
|
||||
|
||||
@ -173,7 +173,6 @@ const Cities = () => {
|
||||
<table className="table table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>Название</th>
|
||||
<th>Федеральный округ</th>
|
||||
<th>Действия</th>
|
||||
@ -182,7 +181,6 @@ const Cities = () => {
|
||||
<tbody>
|
||||
{cities.map((city) => (
|
||||
<tr key={city.id}>
|
||||
<td>{city.id}</td>
|
||||
<td>{city.name}</td>
|
||||
<td>{city.federal_district_name}</td>
|
||||
<td>
|
||||
|
||||
@ -125,7 +125,6 @@ const FederalDistricts = () => {
|
||||
<table className="table table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>Название</th>
|
||||
<th>Действия</th>
|
||||
</tr>
|
||||
@ -133,7 +132,6 @@ const FederalDistricts = () => {
|
||||
<tbody>
|
||||
{districts.map((district) => (
|
||||
<tr key={district.id}>
|
||||
<td>{district.id}</td>
|
||||
<td>{district.name}</td>
|
||||
<td>
|
||||
<div className="btn-group">
|
||||
|
||||
@ -117,7 +117,6 @@ const Roles = () => {
|
||||
<table className="table table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>Название</th>
|
||||
<th>Действия</th>
|
||||
</tr>
|
||||
@ -125,7 +124,6 @@ const Roles = () => {
|
||||
<tbody>
|
||||
{roles.map((role) => (
|
||||
<tr key={role.id}>
|
||||
<td>{role.id}</td>
|
||||
<td>{role.name}</td>
|
||||
<td>
|
||||
<div className="btn-group">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user