Skip to content

Commit

Permalink
Fixed typos preventing feedback on 'Is Flagged'
Browse files Browse the repository at this point in the history
  • Loading branch information
istnv committed Sep 15, 2024
1 parent 35d252d commit 41a2dce
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,7 @@ export function compileActionDefinitions(self) {
],
callback: async (action, context) => {
const nc = self.wsCues[self.nextCue]
if (!!nc) {
if (!nc) {
return
}
await sendCommand(action, '/cue/selected/flagged', {
Expand Down
2 changes: 1 addition & 1 deletion feedbacks.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export function compileFeedbackDefinitions(self) {
callback: async (feedback, context) => {
const opt = feedback.options
let cue = getScope(opt)
return self.wsCues[cue]?.isflagged
return self.wsCues[cue]?.isFlagged
},
},
q_paused: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "figure53-qlab-advance",
"version": "2.8.1",
"version": "2.8.2",
"main": "qlabfb.js",
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions presets.js
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ export function compilePresetDefinitions(self) {
{
actionId: 'flagged',
options: {
flaggId: '1',
flagId: '1',
},
},
],
Expand All @@ -1290,7 +1290,7 @@ export function compilePresetDefinitions(self) {
{
actionId: 'flagged',
options: {
flaggId: '0',
flagId: '0',
},
},
],
Expand Down

0 comments on commit 41a2dce

Please sign in to comment.