Skip to content

Commit

Permalink
checkMixinをcheckableにリネーム
Browse files Browse the repository at this point in the history
  • Loading branch information
Aseiide committed Feb 23, 2022
1 parent ef30c16 commit 5bf9076
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/javascript/check.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
<script>
import 'whatwg-fetch'
import ProductChecker from './product_checker'
import checkMixin from './checkMixin.js'
import checkable from './checkable.js'
export default {
components: {
'product-checker': ProductChecker
},
mixins: [checkMixin],
mixins: [checkable],
props: {
checkableId: { type: Number, required: true },
checkableType: { type: String, required: true },
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions app/javascript/comments.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ import CommentPlaceholder from './comment-placeholder'
import confirmUnload from './confirm-unload'
import toast from './toast'
import role from './role'
import checkMixin from './checkMixin.js'
import checkable from './checkable.js'
export default {
components: {
comment: Comment,
commentPlaceholder: CommentPlaceholder
},
mixins: [toast, confirmUnload, role, checkMixin],
mixins: [toast, confirmUnload, role, checkable],
props: {
commentableId: { type: String, required: true },
commentableType: { type: String, required: true },
Expand Down

0 comments on commit 5bf9076

Please sign in to comment.