Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/studio/state/storage-explorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1654,6 +1654,10 @@ function createStorageExplorerState({
const currentColumnItems = currentColumn.items.filter(
(item) => item.status !== STORAGE_ROW_STATUS.EDITING
)
// [Joshen] JFYI storage does support folders of the same name with different casing
// but its an issue with the List V1 endpoint that's causing an issue with fetching contents
// for folders of the same name with different casing
// We should remove this check once all projects are on the List V2 endpoint
const hasSameNameInColumn =
currentColumnItems.filter((item) => item.name.toLowerCase() === name.toLowerCase()).length >
0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ company:
categories:
- webinar
main_cta: {
url: 'https://events.zoom.us/ev/AsCYBtbPIBcdwQ6c871Vq4nxQlANWpKfu33ZOabQI5I0pzlIwLMp~AujOF_USe12uH1PnzC4QLd0k7fzJSwuqAapzXDUQ5MFZuu8R6x8mgiM1Ag', # Replace with actual registration link
url: 'https://zoom.us/webinar/register/WN_cMSVDLRSRKS5cH8EmmUUQg', # Replace with actual registration link
target: '_blank',
label: 'Register now',
}
Expand Down
Loading