Skip to content

Commit

Permalink
fix: disable video size it no video was picked
Browse files Browse the repository at this point in the history
  • Loading branch information
wajeht committed Aug 19, 2023
1 parent e621cbd commit 63fa08c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/ui/components/dashboard/SessionDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2839,7 +2839,7 @@ function downloadVideo(url) {
<button
type="submit"
class="btn btn-success"
:disabled="uploadAVideoLoading || videoFileSize > 10000000"
:disabled="uploadAVideoLoading || videoFileSize > 10000000 || !videoFileSize"
>
<div
v-if="uploadAVideoLoading"
Expand Down

0 comments on commit 63fa08c

Please sign in to comment.