Commit 47dec46e authored by Stephane Bouvry's avatar Stephane Bouvry
Browse files

- ReplaceStrengthenPerson : Fix finalisation

parent 88f79ba3
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -346,7 +346,7 @@ export default {

      data.append("out", JSON.stringify(out));

      this.$http.post(this.urlAffectation, data).then(
      AxiosOscar.post(this.urlAffectation, data).then(
          ok => {
            document.location.reload();
          }, ko => {
@@ -356,7 +356,7 @@ export default {
              if (ko.body.error) {
                this.errorMessage = "Erreur : " + ko.body.error;
              } else {
                this.errorMessage = ko.body;
                this.errorMessage = ko.data;
              }
            }
          }