diff --git a/client/components/modals/item/tabs/Schedule.vue b/client/components/modals/item/tabs/Schedule.vue
index 0faa29630..2cd3af514 100644
--- a/client/components/modals/item/tabs/Schedule.vue
+++ b/client/components/modals/item/tabs/Schedule.vue
@@ -158,8 +158,6 @@ export default {
this.isProcessing = true
var updateResult = await this.$axios.$patch(`/api/items/${this.libraryItemId}/media`, updatePayload).catch((error) => {
console.error('Failed to update', error)
- const errorMessage = typeof error?.response?.data === 'string' ? error?.response?.data : null
- this.$toast.error(errorMessage || this.$strings.ToastFailedToUpdate)
return false
})
this.isProcessing = false
diff --git a/client/components/ui/TextInput.vue b/client/components/ui/TextInput.vue
index cd3bc6d2d..dd0eaa738 100644
--- a/client/components/ui/TextInput.vue
+++ b/client/components/ui/TextInput.vue
@@ -1,6 +1,6 @@
-
+
close
@@ -41,8 +41,7 @@ export default {
step: [String, Number],
min: [String, Number],
customInputClass: String,
- trimWhitespace: Boolean,
- autocomplete: String
+ trimWhitespace: Boolean
},
data() {
return {
diff --git a/client/components/ui/TextInputWithLabel.vue b/client/components/ui/TextInputWithLabel.vue
index a755a407d..81c5516b1 100644
--- a/client/components/ui/TextInputWithLabel.vue
+++ b/client/components/ui/TextInputWithLabel.vue
@@ -6,7 +6,7 @@
{{ note }}
-
+
@@ -26,8 +26,7 @@ export default {
disabled: Boolean,
inputClass: String,
showCopy: Boolean,
- trimWhitespace: Boolean,
- autocomplete: String
+ trimWhitespace: Boolean
},
data() {
return {}
diff --git a/client/package-lock.json b/client/package-lock.json
index ba071852b..57d2da716 100644
--- a/client/package-lock.json
+++ b/client/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "audiobookshelf-client",
- "version": "2.35.0",
+ "version": "2.33.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "audiobookshelf-client",
- "version": "2.35.0",
+ "version": "2.33.2",
"license": "ISC",
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
diff --git a/client/package.json b/client/package.json
index 71d64f60a..f747cf90f 100644
--- a/client/package.json
+++ b/client/package.json
@@ -1,6 +1,6 @@
{
"name": "audiobookshelf-client",
- "version": "2.35.0",
+ "version": "2.33.2",
"buildNumber": 1,
"description": "Self-hosted audiobook and podcast client",
"main": "index.js",
diff --git a/client/pages/login.vue b/client/pages/login.vue
index cec150e71..8e5cde098 100644
--- a/client/pages/login.vue
+++ b/client/pages/login.vue
@@ -17,9 +17,9 @@