Name
Size
Actions
{#each $nav.children as child, index (child.path)}
dispatch("node_click", index)} on:contextmenu={e => dispatch("node_context", {event: e, index: index})} class="node" class:node_selected={child.fm_selected} class:hidden={child.name.startsWith(".") && !show_hidden} >
{child.name}
{#if child.type === "file"} {formatDataVolume(child.file_size, 3)} {/if}
{#if child.abuse_type !== undefined}
block
{:else if child.id}
{dispatch("node_share_click", index)}} class="button action_button" >
share
{/if} {#if child.properties && child.properties.branding_enabled && !hide_branding}
dispatch("node_branding", index)}>
palette
{/if} {#if $nav.permissions.update && !hide_edit}
dispatch("node_settings", index)}>
edit
{/if}
{/each}