Skip to content

Commit

Permalink
Rename view files with View postfix
Browse files Browse the repository at this point in the history
Linting rules now require all component names to be at least 2 words,
so Grants -> GrantsView satisfies this, as well as making the name
more grep-able and clearer to read
  • Loading branch information
jeffsmohan committed Mar 18, 2024
1 parent cab213c commit 3a135f0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const routes = [
{
path: '/grants',
name: 'grants',
component: () => import('../views/Grants.vue'),
component: () => import('../views/GrantsView.vue'),
meta: {
requiresAuth: true,
},
Expand All @@ -85,7 +85,7 @@ export const routes = [
{
path: '/my-grants/:tab',
name: 'myGrants',
component: () => import('../views/MyGrants.vue'),
component: () => import('../views/MyGrantsView.vue'),
meta: {
tabNames: ['interested', 'assigned', 'not-applying', 'applied'],
requiresAuth: true,
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 3a135f0

Please sign in to comment.