Skip to content

Commit d7c2218

Browse files
committed
fix linter errors
1 parent b78050c commit d7c2218

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/utils/crud/components/Button.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ export default {
2121
props: {
2222
small: {
2323
type: Boolean,
24-
default: true,
24+
default: true
2525
},
2626
dark: {
2727
type: Boolean,
28-
default: true,
28+
default: true
2929
},
3030
xs: {
3131
type: Boolean,
32-
default: false,
32+
default: false
3333
},
3434
color: {
35-
type: String,
35+
type: String
3636
},
3737
tooltip: {
3838
type: String

src/utils/crud/components/ItemDetailsContainer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export default {
116116
this.moveItem(['next', true])
117117
}
118118
},
119-
destroyed() {
119+
destroyed () {
120120
this.itemDetails({})
121121
}
122122
}

src/utils/crud/mixins/datatable-main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export default {
137137
...mapActions([
138138
'openAlertBox'
139139
]),
140-
resolveRowDoubleClick(item, index) {
140+
resolveRowDoubleClick (item, index) {
141141
if (this.editMode) {
142142
let goToItemButton = false
143143
for (const button of this.customButtons) {

src/utils/crud/store/getters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const getters = {
2727
// extended details
2828
item: state => state.item,
2929
childrenList: state => (fields, meta, primaryKey, childItemName, activeColumnName) => {
30-
const childItemsObj = state.childItems[childItemName];
30+
const childItemsObj = state.childItems[childItemName]
3131
const items = childItemsObj.items || []
3232
const result = items.map(
3333
obj => getItemsList(

0 commit comments

Comments
 (0)