Skip to content

Commit

Permalink
fix(property-form): set the cache after the ontology changes with the…
Browse files Browse the repository at this point in the history
… new lastModificationDate to prevent 409 http errors (#824)
  • Loading branch information
mdelez committed Sep 20, 2022
1 parent b818288 commit 0304943
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -503,6 +503,9 @@ export class PropertyFormComponent implements OnInit {
}
);
}

this.ontology.lastModificationDate = this.lastModificationDate;
this._cache.set('currentOntology', this.ontology);
},
(error: ApiResponseError) => {
this.error = true;
Expand Down

0 comments on commit 0304943

Please sign in to comment.