pass through host

This commit is contained in:
joshuaboud 2022-05-30 16:22:41 -03:00
parent 0f972c7951
commit fa5a101abb
No known key found for this signature in database
GPG Key ID: 17EFB59E2A8BF50E

View File

@ -85,6 +85,7 @@
</template>
<template #tbody>
<DirectoryEntryList
:host="host"
:path="path"
:sortCallback="sortCallback"
:searchFilterRegExp="searchFilterRegExp"
@ -100,6 +101,7 @@
</Table>
<div v-else class="flex flex-wrap p-2 gap-2 bg-well h-full overflow-y-auto content-start">
<DirectoryEntryList
:host="host"
:path="path"
:sortCallback="sortCallback"
:searchFilterRegExp="searchFilterRegExp"
@ -125,6 +127,7 @@ import DirectoryEntryList from './DirectoryEntryList.vue';
export default {
props: {
host: String,
path: String,
searchFilterRegExp: RegExp,
},