-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#145: add parameterized query page #167
Conversation
app/src/pages/explorer/parameterized-query/parameterized-query-page.vue
Outdated
Show resolved
Hide resolved
} | ||
</script> | ||
|
||
<style lang="scss" scoped> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we're still avoiding scoped styling (but we'll need to address cleaning up assets/css overall too)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to know why we are avoiding scoped styling. I don't see many downsides, and in this circumstance, the styles wouldn't apply to any other components.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I honestly don't have a good answer for this, may be a question for @tholulomo once he's back. I know we're doing a big css refactor soon anyhow so likely could be left as is for now regardless and then treated as TD if it needs to be addressed later
@@ -78,6 +85,15 @@ const explorerRoutes = [ | |||
name: 'FacetFilterView', | |||
component: () => import('@/pages/explorer/FacetFilter.vue'), | |||
meta: { requiresAuth: false } | |||
}, | |||
{ | |||
path: 'parameterized_query', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a general question, not necessarily a request for a change here-- what's the preference on this project for - vs _ vs camelCase in our routes? I've noticed we have routes that use each of these
#145