浏览代码

Merge branch 'staging' of https://github.com/Musare/Musare into staging

Kristian Vos 3 年之前
父节点
当前提交
f96efce168

+ 10 - 5
frontend/src/components/AdvancedTable.vue

@@ -2270,6 +2270,7 @@ export default {
 			width: 100%;
 		}
 		& > input,
+		/deep/ & > div > input,
 		& > select,
 		& > .button,
 		&.label {
@@ -2307,16 +2308,20 @@ export default {
 			}
 			.control {
 				margin-bottom: 0 !important;
-				&:nth-child(1) select {
+				&:nth-child(1) > select {
 					border-radius: 5px 0 0 0;
 				}
-				&:nth-child(2) select {
+				&:nth-child(2) > select {
 					border-radius: 0 5px 0 0;
 				}
-				&:nth-child(3) input {
-					border-radius: 0 0 0 5px;
+				/deep/ &:nth-child(3) {
+					& > input,
+					& > div > input,
+					& > select {
+						border-radius: 0 0 0 5px;
+					}
 				}
-				&:nth-child(4) button {
+				&:nth-child(4) > button {
 					border-radius: 0 0 5px 0;
 				}
 			}

+ 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");
 		},