Skip to content

Commit 0ad3ae0

Browse files
committed
Fix lint issues.
1 parent 2231970 commit 0ad3ae0

19 files changed

+34
-34
lines changed

components/AccessManagement.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const columns = [
117117
type: 'button',
118118
buttonLabel: 'Edit',
119119
buttonColor: 'primary',
120-
sortable: false,
120+
sortable: false
121121
},
122122
{
123123
name: 'remove',
@@ -127,7 +127,7 @@ const columns = [
127127
type: 'button',
128128
buttonLabel: 'Remove',
129129
buttonColor: 'negative',
130-
sortable: false,
130+
sortable: false
131131
}
132132
];
133133

components/BarcodeScanner.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default {
5555
'dce-video-container', {
5656
fps: 60,
5757
formatsToSupport,
58-
useBarCodeDetectorIfSupported: true,
58+
useBarCodeDetectorIfSupported: true
5959
}
6060
);
6161
const availableCameras = await Html5Qrcode.getCameras();
@@ -142,7 +142,7 @@ export default {
142142
handleClose,
143143
updateCamera,
144144
loadingCamera,
145-
videoContainer,
145+
videoContainer
146146
};
147147
}
148148
};

components/CredentialCardBundle.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export default {
115115
components: {
116116
CredentialSwitch,
117117
CredentialDetails,
118-
DynamicImage,
118+
DynamicImage
119119
},
120120
props: {
121121
credentialRecord: {

components/CredentialCompactBundle.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {toRef} from 'vue';
2727
export default {
2828
name: 'CredentialCompactBundle',
2929
components: {
30-
CredentialSwitch,
30+
CredentialSwitch
3131
},
3232
props: {
3333
// FIXME: ideally the full credential record would be passed to this

components/CredentialDashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export default {
178178
refresh,
179179
search,
180180
openBarcodeDialog,
181-
showBarcodeDialog,
181+
showBarcodeDialog
182182
};
183183
}
184184
};

components/CredentialDetails.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export default {
144144
CredentialSwitch,
145145
CredentialDetailsViews,
146146
DynamicImage,
147-
NfcShare,
147+
NfcShare
148148
},
149149
props: {
150150
toggleDeleteWindow: {
@@ -177,9 +177,9 @@ export default {
177177
title: '',
178178
image: '',
179179
subtitle: '',
180-
description: '',
180+
description: ''
181181
})
182-
},
182+
}
183183
},
184184
setup(props) {
185185
// Local state

components/CredentialDetailsViews.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,9 @@ export default {
168168
title: '',
169169
image: '',
170170
subtitle: '',
171-
description: '',
171+
description: ''
172172
})
173-
},
173+
}
174174
},
175175
setup(props) {
176176
// Local state
@@ -204,7 +204,7 @@ export default {
204204
width: '3px',
205205
opacity: '0.4',
206206
borderRadius: '5px',
207-
backgroundColor: 'gray',
207+
backgroundColor: 'gray'
208208
};
209209
210210
// Fetch style, overrides, & highlights before component mounts

components/EditUserModal.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default {
3939
user: {
4040
type: Object,
4141
required: true
42-
},
42+
}
4343
},
4444
emits: ['update', 'update:modelValue'],
4545
setup(props, {emit}) {
@@ -68,12 +68,12 @@ export default {
6868
},
6969
handleDirty(dirty) {
7070
this.disableAcceptButton = !dirty;
71-
},
71+
}
7272
},
7373
validations: {
7474
form: {
7575
name: {
76-
required,
76+
required
7777
},
7878
email: {
7979
required,

components/InteractDashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default {
8484
name: '',
8585
url: '',
8686
logo: 'https://raw.githubusercontent.com/webpack/media/master/logo/' +
87-
'icon-square-big.png',
87+
'icon-square-big.png'
8888
},
8989
requestUrl: null
9090
};

components/NfcShare.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export default {
155155
data: rawBytes,
156156
lang: 'en',
157157
mediaType: 'application/octet-stream',
158-
recordType: 'mime',
158+
recordType: 'mime'
159159
}]
160160
}, {
161161
overwrite: true,
@@ -182,7 +182,7 @@ export default {
182182
supportsNfc,
183183
isSharing,
184184
writeNfc,
185-
cancelWrite,
185+
cancelWrite
186186
};
187187
}
188188
};

0 commit comments

Comments
 (0)