mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Apply linter autofix
This commit is contained in:
parent
ad090890bb
commit
76a1c16b9f
3 changed files with 3 additions and 4 deletions
|
@ -131,7 +131,7 @@ export default {
|
|||
document.addEventListener('keydown', ({ key }) => {
|
||||
if (key === copypastaCode[copypastastep++]) {
|
||||
if (copypastastep === copypastaCode.length) {
|
||||
document.getElementsByClassName("unselectable").forEach((element) => element.classList.remove("unselectable"))
|
||||
document.getElementsByClassName('unselectable').forEach((element) => element.classList.remove('unselectable'))
|
||||
copypastastep = 0
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -58,7 +58,6 @@
|
|||
|
||||
|
||||
<p class="w-100 px-5 py-2 mb-0" v-html="$t('text_selection_is_disabled')" />
|
||||
|
||||
</view-base>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
const webpack = require('webpack')
|
||||
const fs = require('fs');
|
||||
const fs = require('fs')
|
||||
|
||||
const dateFnsLocales = [
|
||||
'ar',
|
||||
|
@ -73,6 +73,6 @@ module.exports = {
|
|||
ignored: /node_modules/,
|
||||
aggregateTimeout: 300,
|
||||
poll: 1000
|
||||
},
|
||||
}
|
||||
} : {}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue