Skip to content

Commit 3c9f485

Browse files
authored
Merge branch 'main' into olerichter00/adjust-completeness-score-artwork-id-field
2 parents 07fb38a + 96b1e84 commit 3c9f485

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# v4.323.0 (Thu Nov 13 2025)
2+
3+
#### 🚀 Enhancement
4+
5+
- fix: Adjust Completeness score click label [#658](https://github.com/artsy/cohesion/pull/658) ([@olerichter00](https://github.com/olerichter00))
6+
7+
#### Authors: 1
8+
9+
- Ole ([@olerichter00](https://github.com/olerichter00))
10+
11+
---
12+
113
# v4.322.0 (Thu Nov 13 2025)
214

315
#### 🚀 Enhancement

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@artsy/cohesion",
3-
"version": "4.322.0",
3+
"version": "4.323.0",
44
"description": "Analytics schema",
55
"main": "dist/index.js",
66
"publishConfig": {

src/Schema/CMS/Events/BulkEditFlow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* @packageDocumentation
44
*/
55

6-
import { CmsActionType } from "."
76
import { CmsContextModule } from "../Values/CmsContextModule"
7+
import { CmsActionType } from "."
88

99
/**
1010
* Generic click event in the bulk edit flow.

src/Schema/CMS/Events/CompletenessScoreFlow.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@ import { CmsActionType } from "."
1313
* {
1414
* action: "click",
1515
* context_module: "Artworks - completeness score",
16-
* label: "view details",
16+
* label: "completeness checklist link",
1717
* artwork_id: "artwork1"
1818
* }
1919
*/
2020
export type CmsCompletenessScoreClickLabel =
21-
| "view details"
22-
| "improve score"
23-
| "dismiss"
21+
| "completeness checklist link"
22+
| "edit artwork"
2423

2524
export interface CmsCompletenessScoreClickedEvent {
2625
action: "click"

0 commit comments

Comments
 (0)