提交 ceb6742e 编写于 作者: L Lee Tickett 提交者: Kushal Pandya

Revert "DB change, migratoin and changelog"

This reverts commit af5242ecb682189c5d8276e1ab1ffe5ce844f2e5.
上级 906e7337
<script> <script>
import Vue from 'vue'; import axios from '~/lib/utils/axios_utils';
import Flash from '../../../flash'; import Flash from '../../../flash';
import { __ } from '../../../locale'; import { __ } from '../../../locale';
import boardsStore from '../../stores/boards_store'; import boardsStore from '../../stores/boards_store';
export default Vue.extend({ export default {
props: { props: {
issue: { issue: {
type: Object, type: Object,
...@@ -35,7 +35,7 @@ export default Vue.extend({ ...@@ -35,7 +35,7 @@ export default Vue.extend({
} }
// Post the remove data // 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.')); Flash(__('Failed to remove issue from board, please try again.'));
lists.forEach(list => { lists.forEach(list => {
...@@ -71,7 +71,7 @@ export default Vue.extend({ ...@@ -71,7 +71,7 @@ export default Vue.extend({
return req; return req;
}, },
}, },
}); };
</script> </script>
<template> <template>
<div class="block list"> <div class="block list">
......
---
title: Remove vue resource from remove issue
merge_request: 32425
author: Lee Tickett
type: other
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册