pull/4767/head
Joseph Izang 9 months ago
parent a191bb3cc6
commit 848c080325
  1. 1
      apps/remix-ide/src/app/files/fileManager.ts
  2. 4
      libs/remix-ui/workspace/src/lib/components/flat-tree-drop.tsx

@ -83,6 +83,7 @@ class FileManager extends Plugin {
* @param {string} message message to display if path doesn't exist.
*/
async _handleExists(path: string, message?: string) {
console.log('_handleExists is called ', { path, message })
const exists = await this.exists(path)
if (!exists) {

@ -84,10 +84,6 @@ export const FlatTreeDrop = (props: FlatTreeDropProps) => {
await moveFilesSilently(props.selectedItems, dragDestination.path)
}
}
document.querySelectorAll('li.remixui_selected').forEach(item => {
item.classList.remove('remixui_selected')
item.classList.remove('bg-secondary')
})
}
/**

Loading…
Cancel
Save