🚨 Resolves lint errors
This commit is contained in:
@@ -54,7 +54,7 @@ export default {
|
||||
},
|
||||
processData(data) {
|
||||
const self = this;
|
||||
const fltr = function (entry) {
|
||||
const fltr = (entry) => {
|
||||
if (self.filtertags === null) return true;
|
||||
for (let i = 0; i < self.filtertags.length; i += 1) {
|
||||
if (entry.tag_names.includes(self.filtertags[i])) return true;
|
||||
|
||||
@@ -104,7 +104,9 @@ export default {
|
||||
async processData(data) {
|
||||
if (this.parseLocally) {
|
||||
const parser = new Parser();
|
||||
const { link, title, items, author, description, image } = await parser.parseString(data);
|
||||
const {
|
||||
link, title, items, author, description, image,
|
||||
} = await parser.parseString(data);
|
||||
this.meta = {
|
||||
title,
|
||||
link,
|
||||
|
||||
Reference in New Issue
Block a user