Skip to content

Commit

Permalink
overlay is back
Browse files Browse the repository at this point in the history
  • Loading branch information
BasmaElhoseny01 committed Aug 17, 2024
1 parent dd9c923 commit ce5ae63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
8 changes: 3 additions & 5 deletions src/components/molecules/AudioWave.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,17 @@

<!-- Volume -->
<v-col cols="auto" class="volume-col">
<v-icon> mdi-volume-high</v-icon>
<v-slider
v-model="volume"
min="0"
max="1"
step="0.01"
label="Volume"
@change="setVolume"
hide-details
@change="setVolume"
class="volume-slider"
/>
</v-col>

<!-- Download -->

</v-row>

Expand Down Expand Up @@ -307,7 +305,7 @@ export default {
.volume-col {
flex: 1;
max-width: 300px; /* Adjust width as needed */
max-width: 300px;
}
.volume-slider {
Expand Down
8 changes: 4 additions & 4 deletions src/components/organisms/UserModeratedSentiment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

<!-- Right Controls -->
<v-col cols="12" md="4" class="text-right">
<v-btn color="orange" class="white--text">
<v-btn color="orange" class="white--text" @click="analyzeTimeStamp()">
+ Analyze
</v-btn>
</v-col>
Expand Down Expand Up @@ -90,7 +90,7 @@



<!-- <v-overlay :value="overlay">
<v-overlay :value="overlay">
<v-progress-circular
indeterminate
size="64"
Expand All @@ -107,7 +107,7 @@
<template v-slot:action>
<v-btn color="white" text @click="snackbar.visible = false">Close</v-btn>
</template>
</v-snackbar> -->
</v-snackbar>
</div>
</template>

Expand Down Expand Up @@ -266,7 +266,7 @@ export default {
console.log('Analyzing Timestamp..............................')
// Show the overlay
this.overlay = !this.overlay
this.overlay = true
axios.post('http://localhost:5000/test',
{
Expand Down

0 comments on commit ce5ae63

Please sign in to comment.