Skip to content

Commit 9d7620a

Browse files
committed
[ui] Fix wrong param in unify periodic task
Fixed an issue where creating a unify periodic task with "Guess GitHub User” enabled failed. Signed-off-by: Jose Javier Merchante <[email protected]>
1 parent edc621e commit 9d7620a

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: Unify periodic task param issue
3+
category: fixed
4+
author: Jose Javier Merchante <[email protected]>
5+
issue: null
6+
notes: >
7+
Fixed an issue where creating a unify periodic task with
8+
"Guess GitHub User” enabled failed.

ui/src/views/SettingsGeneral.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
hide-details
148148
/>
149149
<v-checkbox
150-
v-model="tasks.unify.params.guessGithubUser"
150+
v-model="tasks.unify.params.guess_github_user"
151151
label="Match GitHub users to GitHub-generated emails"
152152
density="comfortable"
153153
hide-details
@@ -272,7 +272,7 @@ export default {
272272
exclude: true,
273273
strict: true,
274274
match_source: false,
275-
guessGithubUser: false,
275+
guess_github_user: false,
276276
},
277277
},
278278
},

0 commit comments

Comments
 (0)