Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thecalcc committed Nov 6, 2023
1 parent 8c7e9ad commit 7cc6b74
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/planning-extension/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ const extension: IExtension = {
!superdesk.entities.article.isLockedInOtherSession(item) &&
!['killed', 'recalled', 'unpublished', 'spiked', 'correction'].includes(item.state)
) {
const event = new CustomEvent("planning:fulfilassignment", {detail: item});
const event = new CustomEvent('planning:fulfilassignment', {detail: item});

window.dispatchEvent(event);
}
},
Expand Down

0 comments on commit 7cc6b74

Please sign in to comment.