fix: use AsyncEditor again in comments and description
This commit is contained in:
parent
959b53b3a6
commit
5867f79735
2 changed files with 4 additions and 4 deletions
|
@ -152,7 +152,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Editor from '@/components/input/editor.vue'
|
import AsyncEditor from '@/components/input/AsyncEditor'
|
||||||
|
|
||||||
import TaskCommentService from '../../../services/taskComment'
|
import TaskCommentService from '../../../services/taskComment'
|
||||||
import TaskCommentModel from '../../../models/taskComment'
|
import TaskCommentModel from '../../../models/taskComment'
|
||||||
|
@ -162,7 +162,7 @@ import {mapState} from 'vuex'
|
||||||
export default {
|
export default {
|
||||||
name: 'comments',
|
name: 'comments',
|
||||||
components: {
|
components: {
|
||||||
Editor,
|
Editor: AsyncEditor,
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
taskId: {
|
taskId: {
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Editor from '@/components/input/editor.vue'
|
import AsyncEditor from '@/components/input/AsyncEditor'
|
||||||
|
|
||||||
import {LOADING} from '@/store/mutation-types'
|
import {LOADING} from '@/store/mutation-types'
|
||||||
import {mapState} from 'vuex'
|
import {mapState} from 'vuex'
|
||||||
|
@ -38,7 +38,7 @@ import {mapState} from 'vuex'
|
||||||
export default {
|
export default {
|
||||||
name: 'description',
|
name: 'description',
|
||||||
components: {
|
components: {
|
||||||
Editor,
|
Editor: AsyncEditor,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue