change cover structure for radio fix #15
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Artem Anufrij 2023-09-21 11:11:54 +02:00
parent c89ed9e54e
commit d44176f86c

View File

@ -44,9 +44,7 @@ export default {
let h = context.rootGetters.headers; let h = context.rootGetters.headers;
h.headers["content-type"] = "multipart/form-data"; h.headers["content-type"] = "multipart/form-data";
axios.put(context.rootGetters.server + "/api/radios/" + radio._id + "/cover", formData, h).then((res) => { axios.put(context.rootGetters.server + "/api/radios/" + radio._id + "/cover", formData, h).then((res) => {
radio.cover32 = res.data.cover32; radio.covers = res.data.covers;
radio.cover64 = res.data.cover64;
radio.cover128 = res.data.cover128;
context.dispatch("loadRadios", true); context.dispatch("loadRadios", true);
}); });
} }