chore: add ai renames at more places (#4244)

Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
Akash K
2024-08-07 21:43:32 +05:30
committed by GitHub
parent 1fdb0f2d04
commit 31b691bb37
9 changed files with 221 additions and 144 deletions

View File

@@ -116,6 +116,7 @@
<CollectionsGraphqlAddRequest
:show="showModalAddRequest"
:folder-path="editingFolderPath"
:request-context="requestContext"
@add-request="onAddRequest($event)"
@hide-modal="displayModalAddRequest(false)"
/>
@@ -330,6 +331,10 @@ const filteredCollections = computed(() => {
return filteredCollections
})
const requestContext = computed(() => {
return tabs.currentActiveTab.value.document.request
})
const displayModalAdd = (shouldDisplay: boolean) => {
showModalAdd.value = shouldDisplay
}