Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[4.x] Prevent dirt on saved entry #9203

Merged
merged 2 commits into from
Dec 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions resources/js/components/entries/PublishForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,9 @@ export default {
.then(() => {
// If revisions are enabled, just emit event.
if (this.revisionsEnabled) {
this.trackDirtyState = false;
this.values = this.resetValuesFromResponse(response.data.data.values);
this.nextTick(() => this.trackDirtyState = true);
this.$nextTick(() => this.$emit('saved', response));
return;
}
Expand All @@ -586,7 +588,9 @@ export default {
// the hooks are resolved because if this form is being shown in a stack, we only
// want to close it once everything's done.
else {
this.trackDirtyState = false;
this.values = this.resetValuesFromResponse(response.data.data.values);
this.nextTick(() => this.trackDirtyState = true);
this.initialPublished = response.data.data.published;
this.activeLocalization.published = response.data.data.published;
this.activeLocalization.status = response.data.data.status;
Expand Down
Loading