We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With a friend, we are developping a Nextcloud application and we found that the NcProgressBar component doesn't work on chromium based browser.
Here's ou code :
<template #actions> <div class="flex items-center ml-2"> <button v-if="!isTransfering" @click="toggleAddFilePopup" class="flex items-center space-x-2 bg-blue-100 text-blue-600 font-medium px-4 py-2 rounded-md hover:bg-blue-200 transition"> <Plus :size="20" /> <span>Nouveau</span> </button> <span v-else> <NcProgressBar :value="transferProgress" size="medium" :color="transferStatus" /> </span> </div> </template>
On the chromium based browser, the progress bar just doesn't show. And we don't have any error in the console.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
With a friend, we are developping a Nextcloud application and we found that the NcProgressBar component doesn't work on chromium based browser.
Here's ou code :
<template #actions> <div class="flex items-center ml-2"> <button v-if="!isTransfering" @click="toggleAddFilePopup" class="flex items-center space-x-2 bg-blue-100 text-blue-600 font-medium px-4 py-2 rounded-md hover:bg-blue-200 transition"> <Plus :size="20" /> <span>Nouveau</span> </button> <span v-else> <NcProgressBar :value="transferProgress" size="medium" :color="transferStatus" /> </span> </div> </template>
On the chromium based browser, the progress bar just doesn't show. And we don't have any error in the console.
The text was updated successfully, but these errors were encountered: