Skip to content

Commit

Permalink
Merge pull request #1374 from dandi/file-browser-hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandenburgh authored Nov 21, 2022
2 parents 7bbf01d + 4c251bb commit 47d4ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/views/FileBrowserView/FileBrowser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export default defineComponent({
const store = useDandisetStore();
const location = ref(rootDirectory);
const items: Ref<ExtendedAssetPath[]> = ref([]);
const items: Ref<ExtendedAssetPath[] | null> = ref(null);
// Value is the asset id of the item to delete
const itemToDelete: Ref<AssetPath | null> = ref(null);
Expand Down

0 comments on commit 47d4ee2

Please sign in to comment.