Skip to content

Commit 60ccec0

Browse files
authored
🐛 fix casing of alsoOnThisConnection property (#4529)
1 parent 668fdbb commit 60ccec0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/Http/Resources/CheckinSuccessResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
description: 'points and reasons for the points',
4343
),
4444
new OA\Property(
45-
property: 'alsoOnThisconnection',
45+
property: 'alsoOnThisConnection',
4646
description: 'Statuses of other people on this connection',
4747
type: 'array',
4848
items: new OA\Items(ref: '#/components/schemas/StatusResource'),

resources/types/Api.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ export interface CheckinSuccessResource {
747747
/** Points model */
748748
points?: Points;
749749
/** Statuses of other people on this connection */
750-
alsoOnThisconnection?: StatusResource[];
750+
alsoOnThisConnection?: StatusResource[];
751751
}
752752

753753
/** Client */

resources/vue/components/CheckinSuccessHelper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default {
3737
}
3838
3939
this.points = success?.points ?? null;
40-
this.alsoOnThisConnection = success?.alsoOnThisconnection ?? [];
40+
this.alsoOnThisConnection = success?.alsoOnThisConnection ?? [];
4141
this.status = success?.status ?? null;
4242
this.$refs.modal.show();
4343
this.checkinSuccess.reset();

storage/api-docs/api-docs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6534,7 +6534,7 @@
65346534
"points": {
65356535
"$ref": "#/components/schemas/Points"
65366536
},
6537-
"alsoOnThisconnection": {
6537+
"alsoOnThisConnection": {
65386538
"description": "Statuses of other people on this connection",
65396539
"type": "array",
65406540
"items": {

0 commit comments

Comments
 (0)