@@ -384,10 +384,10 @@ const actions = computed(()=>{
384384 _actions .push ({separator: true });
385385 if (isMyFolder .value && !! props .file ? .state && props .file ? .state != ' new' ){
386386 _actions .push ({
387- label: ' Unpublish ' ,
387+ label: ' Take Down ' ,
388388 class: ' opacity-80' ,
389389 icon: ' pi pi-trash' ,
390- loading: unpublishLoading . value ,
390+ loading: false ,
391391 command (e ){
392392 unpublishLoading .value = true ;
393393 fileService .unpublish (props .file ? .path ,(reject )=> {
@@ -399,10 +399,10 @@ const actions = computed(()=>{
399399 })
400400 }
401401 _actions .push ({
402- label: ' Local Delete ' ,
402+ label: ' Delete Local File ' ,
403403 class: ' opacity-80' ,
404404 icon: ' pi pi-trash' ,
405- loading: deleteLoading . value ,
405+ loading: false ,
406406 command (e ){
407407 deleteLoading .value = true ;
408408 fileService .localDelete (props .file ? .path ,info .value ? .endpoint ? .id ,(reject )=> {
@@ -508,7 +508,7 @@ onMounted(()=>{
508508 < div class = " pt-4 pb-2" >
509509 < b> Users permission: < / b>
510510 < / div>
511- < Listbox v- if = " props.file.access?.users" : options= " Object.keys(props.file.access.users)" class = " w-full md:w-56" listStyle= " max-height:250px" >
511+ < Listbox v- if = " props.file.access?.users" : options= " Object.keys(props.file.access.users)" class = " w-full md:w-56 noborder noshadow " listStyle= " max-height:250px" >
512512 < template #option= " slotProps" >
513513 < div class = " flex w-full" >
514514 < div class = " flex-item pt-1" >
@@ -524,10 +524,10 @@ onMounted(()=>{
524524 < / div>
525525 < / template>
526526 < template #empty>
527- -- -
527+ < span >< / span >
528528 < / template>
529529 < template #footer>
530- < div class = " flex items-center pt-1 pb-2 px-3 " >
530+ < div class = " flex items-center pt-1 pb-2 " >
531531 < div class = " flex-item pr-1" >
532532 < Select size= " small" class = " w-full" v- model= " acl.user" : options= " filterEps(props.file.access.users)" optionLabel= " username" optionValue= " username" : filter= " filterEps(props.file.access.users).length>8" placeholder= " Endpoint" / >
533533 < / div>
@@ -548,9 +548,9 @@ onMounted(()=>{
548548 < / template>
549549 < div class = " p-3" >
550550 < Loading v- if = " mirrorLoading" / >
551- < Listbox v- else : options= " filterMirrors" class = " w-full md:w-56" listStyle= " max-height:250px" >
551+ < Listbox v- else : options= " filterMirrors" class = " w-full md:w-56 noborder noshadow " listStyle= " max-height:250px" >
552552 < template #option= " slotProps" >
553- < div class = " flex items-center pt-1 pb-2 px-0 w-full" >
553+ < div class = " flex items-center px-0 w-full" >
554554 < div class = " flex-item pr-2 py-2" >
555555 < Tag> {{slotProps .option .ep ? .name }}< / Tag>
556556 < Tag v- if = " info?.endpoint?.id == slotProps.option?.ep?.id" value= " Local" class = " ml-2" severity= " contrast" / >
@@ -570,10 +570,10 @@ onMounted(()=>{
570570 < / div>
571571 < / template>
572572 < template #empty>
573- ------
573+ < span >< / span >
574574 < / template>
575575 < template #footer>
576- < div class = " flex items-center pt-1 pb-2 px-3 " >
576+ < div class = " flex items-center pt-1 pb-2" >
577577 < div class = " flex-item pr-1" >
578578 < Select size= " small" class = " w-full" v- model= " mirror.user" : options= " filterUnMirrorEps" optionLabel= " name" optionValue= " id" : filter= " filterUnMirrorEps.length>8" placeholder= " Endpoint" >
579579 < template #option= " slotProps" >
0 commit comments