We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97e1fd7 commit 05e6287Copy full SHA for 05e6287
1 file changed
spa/src/pages/admin/place/update.vue
@@ -68,7 +68,6 @@ export default Vue.extend({
68
return {
69
accessLevel: "none",
70
oldName: "",
71
- icon2D: null,
72
place: {} as any,
73
error: "",
74
success: "",
@@ -94,7 +93,6 @@ export default Vue.extend({
94
93
await this.$http.get(`/place/by_id/${this.$route.params.id}`).then((response) => {
95
this.place = response.data.place;
96
this.oldName = response.data.place.name;
97
- this.icon2D = response.data.place.map_icon_index;
98
});
99
} catch (e) {
100
console.log(e);
0 commit comments