Skip to content

Commit

Permalink
give feedback while processing with cursor-wait
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboud committed Jun 23, 2022
1 parent 5d73ab5 commit fb0e286
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion file-sharing/src/components/SambaManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ If not, see <https://www.gnu.org/licenses/>.
-->

<template>
<div class="centered-column p-well space-y-well">
<div class="centered-column p-well space-y-well" :class="{'cursor-wait': processing}">
<SambaGlobalManagement :globalConfig="globalConfig" :processing="processing" @startProcessing="processing++"
@stopProcessing="processing--" />
<SambaShareManagement :shares="shares" @refreshShares="refresh" :groups="groups" :users="users"
Expand Down
2 changes: 1 addition & 1 deletion file-sharing/src/components/SambaShareManagement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ If not, see <https://www.gnu.org/licenses/>.
-->

<template>
<div class="card">
<div class="card" :class="{'cursor-wait': processing}">
<div class="card-header flex flex-row items-center gap-2">
<div class="text-header">Shares</div>
<LoadingSpinner v-if="processing || parentProcessing" class="size-icon" />
Expand Down

0 comments on commit fb0e286

Please sign in to comment.