mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 11:49:59 +00:00
ci(editor): Enfore stricter linting rules from eslint-plugin-vue (no-changelog) (#6242)
This commit is contained in:
committed by
GitHub
parent
8a8fed0840
commit
4b5cbe7750
@@ -207,7 +207,6 @@ import {
|
||||
GITHUB_STARS_BANNER_SHOW_UNTIL_DATE,
|
||||
MAIN_REPOSITORY_URL,
|
||||
} from '@/constants';
|
||||
import TemplateCard from '@/components/TemplateCard.vue';
|
||||
import { debounceHelper } from '@/mixins/debounce';
|
||||
import ResourceOwnershipSelect from '@/components/forms/ResourceOwnershipSelect.ee.vue';
|
||||
import ResourceFiltersDropdown from '@/components/forms/ResourceFiltersDropdown.vue';
|
||||
@@ -240,7 +239,6 @@ export default defineComponent({
|
||||
name: 'resources-list-layout',
|
||||
mixins: [debounceHelper],
|
||||
components: {
|
||||
TemplateCard,
|
||||
PageViewLayout,
|
||||
PageViewLayoutList,
|
||||
ResourceOwnershipSelect,
|
||||
@@ -500,7 +498,11 @@ export default defineComponent({
|
||||
this.sendFiltersTelemetry('sharedWith');
|
||||
},
|
||||
'filters.search'() {
|
||||
this.callDebounced('sendFiltersTelemetry', { debounceTime: 1000, trailing: true }, 'search');
|
||||
void this.callDebounced(
|
||||
'sendFiltersTelemetry',
|
||||
{ debounceTime: 1000, trailing: true },
|
||||
'search',
|
||||
);
|
||||
},
|
||||
sortBy(newValue) {
|
||||
this.$emit('sort', newValue);
|
||||
|
||||
Reference in New Issue
Block a user