Skip to content

Commit 3630cfd

Browse files
committed
Fix check prompt dialog configuring wrong check attributes
1 parent 1157061 commit 3630cfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

module/checks/check-prompt.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ async function attributeCheck(actor, options = {}) {
150150
actor,
151151
{
152152
primary: promptResult.primary,
153-
secondary: promptResult.primary,
153+
secondary: promptResult.secondary,
154154
},
155155
null,
156156
(check, callbackActor, item) => {
@@ -182,7 +182,7 @@ async function openCheck(actor, options = {}) {
182182
actor,
183183
{
184184
primary: promptResult.primary,
185-
secondary: promptResult.primary,
185+
secondary: promptResult.secondary,
186186
},
187187
(check, callbackActor, item) => {
188188
const checkConfigurer = CheckConfiguration.configure(check);

0 commit comments

Comments
 (0)