diff --git a/client/components/tables/TracksTable.vue b/client/components/tables/TracksTable.vue
index 66d11f72..a4abaf94 100644
--- a/client/components/tables/TracksTable.vue
+++ b/client/components/tables/TracksTable.vue
@@ -24,14 +24,6 @@
{{ $strings.LabelSize }} |
{{ $strings.LabelDuration }} |
{{ $strings.LabelDownload }} |
-
-
- Tone
-
- information
-
-
- |
@@ -48,9 +40,6 @@
download
|
-
-
- |
@@ -92,35 +81,11 @@ export default {
},
userIsAdmin() {
return this.$store.getters['user/getIsAdminOrUp']
- },
- showExperimentalFeatures() {
- return this.$store.state.showExperimentalFeatures
}
},
methods: {
clickBar() {
this.showTracks = !this.showTracks
- },
- toneProbe(index) {
- this.toneProbing = true
-
- this.$axios
- .$post(`/api/items/${this.libraryItemId}/tone-scan/${index}`)
- .then((data) => {
- console.log('Tone probe data', data)
- if (data.error) {
- this.$toast.error('Tone probe error: ' + data.error)
- } else {
- this.$toast.success('Tone probe successful! Check browser console')
- }
- })
- .catch((error) => {
- console.error('Failed to tone probe', error)
- this.$toast.error('Tone probe failed')
- })
- .finally(() => {
- this.toneProbing = false
- })
}
},
mounted() {}