-
Notifications
You must be signed in to change notification settings - Fork 147
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
Filtering #490
Filtering #490
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
<style lang="scss"> | ||
.cool-grid { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
gap: 2rem; | ||
|
||
> :global(h2) { | ||
grid-column: span 2; | ||
} | ||
} | ||
</style> |
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.
@TGlide since we use this template so much we should probably add it to Pink
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.
You mean the grid-template columns?
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.
Yes :)
...nsole/project-[project]/databases/database-[database]/collection-[collection]/filters.svelte
Outdated
Show resolved
Hide resolved
hr { | ||
height: 1px; | ||
width: calc(100% + 2rem); | ||
background-color: hsl(var(--color-border)); | ||
|
||
margin-block-start: 1rem; | ||
margin-inline: -1rem; | ||
} |
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 already have dividers in pink
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.
Didn't find them on pink.appwrite.io 🤔
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.
Then we probably need to add them 😆 but I'm sure they are in the code
|
||
<p class="u-text-center u-margin-block-start-24"> | ||
Signed in as test@test.com <button |
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.
Does test@test.com
need to stay here?
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.
@PineappleIOnic does the firebase report return a username/email?
...tes/console/project-[project]/databases/database-[database]/collection-[collection]/+page.ts
Outdated
Show resolved
Hide resolved
export const load: PageLoad = async ({ params, depends, url, route }) => { | ||
depends(Dependencies.DOCUMENTS); | ||
const page = getPage(url); | ||
const limit = getLimit(url, route, PAGE_LIMIT); | ||
const view = getView(url, route, View.Grid); | ||
const offset = pageToOffset(page, limit); | ||
|
||
const queries = url.searchParams.get('query'); | ||
const parsedQueries = queryParamToMap(queries || '[]'); | ||
console.log(parsedQueries); |
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.
leftover ?
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.
Please address the comments
…ase]/collection-[collection]/+page.ts Co-authored-by: Christy Jacob <christyjacob4@gmail.com>
No description provided.