This commit is contained in:
Владимир Фёдоров 2026-03-22 04:33:48 +07:00
parent aba3fb0eb1
commit 3fd528fbbd
14 changed files with 37 additions and 36 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 859 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 MiB

View File

@ -5,8 +5,8 @@
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Вечерний детектив</title> <title>Вечерний детектив</title>
<script type="module" crossorigin src="/assets/index-Dz5oDClU.js"></script> <script type="module" crossorigin src="/assets/index-lopyD5er.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-CGYTTGLU.css"> <link rel="stylesheet" crossorigin href="/assets/index-2zd-tSug.css">
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>

View File

@ -136,8 +136,9 @@ func (s *Services) GetTeam(ctx context.Context, req *proto.GetTeamReq) (*proto.G
} }
res := make([]*proto.Action, 0, len(actions)) res := make([]*proto.Action, 0, len(actions))
for _, place := range s.storyService.GetPlaces(actionsCodes) { for i, place := range s.storyService.GetPlaces(actionsCodes) {
newAction := mapPlaceToProtoAction(place) newAction := mapPlaceToProtoAction(place)
newAction.Id = actions[i].ID
newAction.Name = place.Name newAction.Name = place.Name
newAction.Text = place.Text newAction.Text = place.Text
newAction.Image = place.Image newAction.Image = place.Image