diff --git a/bundles/org.openhab.ui/web/.eslintrc.js b/bundles/org.openhab.ui/web/.eslintrc.js index fbdc5a77d3..2d53e6e807 100644 --- a/bundles/org.openhab.ui/web/.eslintrc.js +++ b/bundles/org.openhab.ui/web/.eslintrc.js @@ -69,6 +69,7 @@ module.exports = { 'vue/attribute-hyphenation': 'off', 'vue/attributes-order': 'off', 'vue/component-definition-name-casing': 'off', + 'vue/first-attribute-linebreak': 'off', 'vue/html-closing-bracket-newline': ['error', { 'singleline': 'never', 'multiline': 'never' }], 'vue/html-closing-bracket-spacing': 'error', 'vue/html-indent': 'error', @@ -76,6 +77,7 @@ module.exports = { 'vue/html-self-closing': 'error', 'vue/max-attributes-per-line': 'off', 'vue/multiline-html-element-content-newline': 'error', + 'vue/multi-word-component-names': 'off', 'vue/mustache-interpolation-spacing': 'error', 'vue/no-multi-spaces': 'error', 'vue/no-v-html': 'off', diff --git a/bundles/org.openhab.ui/web/src/components/pagedesigner/widget-slot-config-popup.vue b/bundles/org.openhab.ui/web/src/components/pagedesigner/widget-slot-config-popup.vue index 61573c31c1..71a83295df 100644 --- a/bundles/org.openhab.ui/web/src/components/pagedesigner/widget-slot-config-popup.vue +++ b/bundles/org.openhab.ui/web/src/components/pagedesigner/widget-slot-config-popup.vue @@ -67,7 +67,7 @@ export default { methods: { switchTab (idx) { this.currentTab = undefined - this.$nextTick(() => { this.currentTab = idx }, 500) + this.$nextTick(() => { this.currentTab = idx }) }, widgetSlotConfigOpened () { },