Revert "DB change, migratoin and changelog"

This reverts commit af5242ecb682189c5d8276e1ab1ffe5ce844f2e5.
This commit is contained in:
Lee Tickett 2019-08-30 08:25:51 +00:00 committed by Kushal Pandya
parent 906e7337ba
commit ceb6742e01
2 changed files with 9 additions and 4 deletions

View File

@ -1,10 +1,10 @@
<script>
import Vue from 'vue';
import axios from '~/lib/utils/axios_utils';
import Flash from '../../../flash';
import { __ } from '../../../locale';
import boardsStore from '../../stores/boards_store';
export default Vue.extend({
export default {
props: {
issue: {
type: Object,
@ -35,7 +35,7 @@ export default Vue.extend({
}
// Post the remove data
Vue.http.patch(this.updateUrl, data).catch(() => {
axios.patch(this.updateUrl, data).catch(() => {
Flash(__('Failed to remove issue from board, please try again.'));
lists.forEach(list => {
@ -71,7 +71,7 @@ export default Vue.extend({
return req;
},
},
});
};
</script>
<template>
<div class="block list">

View File

@ -0,0 +1,5 @@
---
title: Remove vue resource from remove issue
merge_request: 32425
author: Lee Tickett
type: other