Merge branch 'UC-206' into 'master'
Исправлен null в поиске клиентов See merge request andrusyakka/urban-couscous!243
This commit is contained in:
@@ -214,7 +214,9 @@ export default {
|
|||||||
.get(`general/person/${this.createdClientId}/detail/`)
|
.get(`general/person/${this.createdClientId}/detail/`)
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
this.dataClients = [response];
|
this.dataClients = [response];
|
||||||
this.createdClientName = `${response.last_name} ${response.first_name} ${response.patronymic}`;
|
this.createdClientName = `${response.last_name ?? ""} ${
|
||||||
|
response?.first_name ?? ""
|
||||||
|
} ${response?.patronymic ?? ""}`;
|
||||||
this.paginationInfo = {
|
this.paginationInfo = {
|
||||||
currentPage: 0,
|
currentPage: 0,
|
||||||
length: 0,
|
length: 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user