Skip to content

Commit

Permalink
chore: keep eslint happy with strings (quasarframework#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkeye64 authored Feb 13, 2020
1 parent 49791d5 commit 7624395
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/ui/dev/src/router/pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function slugify (str) {
export default require.context('../pages', true, /^\.\/.*\.vue$/)
.keys()
.map(page => page.slice(2).replace('.vue', ''))
.filter(page => page !== "Index")
.filter(page => page !== 'Index')
.map(page => ({
file: page,
title: page + '.vue',
Expand Down

0 comments on commit 7624395

Please sign in to comment.