mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
refactor: Clear unused ESLint directives from FE packages (no-changelog) (#6811)
This commit is contained in:
@@ -495,7 +495,6 @@ export default defineComponent({
|
||||
{
|
||||
text: 'Today', // TODO
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
onClick(picker: any) {
|
||||
picker.$emit('pick', new Date());
|
||||
},
|
||||
@@ -503,7 +502,6 @@ export default defineComponent({
|
||||
{
|
||||
text: 'Yesterday', // TODO
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
onClick(picker: any) {
|
||||
const date = new Date();
|
||||
date.setTime(date.getTime() - 3600 * 1000 * 24);
|
||||
@@ -513,7 +511,6 @@ export default defineComponent({
|
||||
{
|
||||
text: 'A week ago', // TODO
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
onClick(picker: any) {
|
||||
const date = new Date();
|
||||
date.setTime(date.getTime() - 3600 * 1000 * 24 * 7);
|
||||
|
||||
Reference in New Issue
Block a user