Skip to content

Commit

Permalink
Fix reindex delay
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Aug 6, 2024
1 parent 97bceb3 commit 95c88d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion assets/vue/ProposedPatterns.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default {
name: 'RecentChanges',
data() {
return {
params: {before: 0, delay: 600},
params: {before: 0},
changes: null,
changeUrl: '/licenses/proposed/meta',
total: null
Expand All @@ -147,6 +147,7 @@ export default {
const ua = new UserAgent({baseURL: window.location.href});
const form = change.data;
form.contributor = change.login;
form.delay = 600;
form['create-pattern'] = 1;
form.checksum = change.token_hexsum;
await ua.post(change.createUrl, {form});
Expand Down

0 comments on commit 95c88d0

Please sign in to comment.