Forráskód Böngészése

fix: Inconsistent autosuggest data action naming

Owen Diffey 3 éve
szülő
commit
373129e783

+ 1 - 1
frontend/src/components/modals/BulkActions.vue

@@ -105,7 +105,7 @@ export default {
 	methods: {
 		init() {
 			if (this.type.autosuggest && this.type.autosuggestDataAction)
-				this.socket.dispatch(this.type.autosuggestAction, res => {
+				this.socket.dispatch(this.type.autosuggestDataAction, res => {
 					if (res.status === "success") {
 						const { items } = res.data;
 						this.allItems = items;

+ 3 - 3
frontend/src/pages/Admin/tabs/Songs.vue

@@ -724,7 +724,7 @@ export default {
 					/^[a-zA-Z0-9_]{1,64}$|^[a-zA-Z0-9_]{1,64}\[[a-zA-Z0-9_]{1,64}\]$/
 				),
 				autosuggest: true,
-				autosuggestAction: "songs.getTags"
+				autosuggestDataAction: "songs.getTags"
 			};
 			this.openModal("bulkActions");
 		},
@@ -735,7 +735,7 @@ export default {
 				items: selectedRows.map(row => row._id),
 				regex: new RegExp(/^(?=.{1,64}$).*$/),
 				autosuggest: true,
-				autosuggestAction: "songs.getArtists"
+				autosuggestDataAction: "songs.getArtists"
 			};
 			this.openModal("bulkActions");
 		},
@@ -746,7 +746,7 @@ export default {
 				items: selectedRows.map(row => row._id),
 				regex: new RegExp(/^[\x00-\x7F]{1,32}$/),
 				autosuggest: true,
-				autosuggestAction: "songs.getGenres"
+				autosuggestDataAction: "songs.getGenres"
 			};
 			this.openModal("bulkActions");
 		},