Skip to content

Commit

Permalink
fix(ui): force pending false after object is loaded
Browse files Browse the repository at this point in the history
Fixes #4457
  • Loading branch information
sogehige committed Dec 21, 2020
1 parent f7eabd9 commit 21c9d7c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/panel/views/managers/events-edit.vue
Expand Up @@ -492,7 +492,10 @@ export default defineComponent({
editationItem.value.filter = eventGetAll.filter;
console.debug('Loaded', eventGetAll);
ctx.root.$nextTick(() => (watchEventChange.value = true));
ctx.root.$nextTick(() => {
watchEventChange.value = true
ctx.emit('update:pending', false);
});
resolve();
});
}
Expand Down

0 comments on commit 21c9d7c

Please sign in to comment.