mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 01:40:13 -04:00
21bbc93afa
* init * update Popovers to use new hooks * Update Header.tsx * made primitive components for filter and sorts * Delete FilterPopoverWrapper.tsx * Delete SortPopoverWrapper.tsx * remove * Create README.md * Update README.md * fix sort popover issues * Update SupabaseGrid.tsx * move DeleteConfirmationDialogs into context * fix issue with * more stuff for alaister * fix ts and tables pages * First round of clean up * Update README.md * Smol fix * Fix issues identified * Smol fix * Fix updating table name in database/tables not invalidating * Improve SQL editor invalidation logic * Add fix to reopen last opened table when landing on table editor * Smol fix --------- Co-authored-by: Alaister Young <a@alaisteryoung.com> Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
5 lines
165 B
TypeScript
5 lines
165 B
TypeScript
export const tableEditorKeys = {
|
|
tableEditor: (projectRef: string | undefined, id?: number) =>
|
|
['projects', projectRef, 'table-editor', id].filter(Boolean),
|
|
}
|