Sfoglia il codice sorgente

refactor(AdvancedTable): Removed regex from dropdown filters

Owen Diffey 3 anni fa
parent
commit
89d50a298e

+ 2 - 2
frontend/src/pages/Admin/tabs/Playlists.vue

@@ -222,7 +222,7 @@ export default {
 					name: "type",
 					displayName: "Type",
 					property: "type",
-					filterTypes: ["exact", "regex"],
+					filterTypes: ["exact"],
 					defaultFilterType: "exact",
 					dropdown: [
 						["genre", "Genre"],
@@ -236,7 +236,7 @@ export default {
 					name: "privacy",
 					displayName: "Privacy",
 					property: "privacy",
-					filterTypes: ["exact", "regex"],
+					filterTypes: ["exact"],
 					defaultFilterType: "exact",
 					dropdown: [
 						["public", "Public"],

+ 1 - 1
frontend/src/pages/Admin/tabs/Punishments.vue

@@ -224,7 +224,7 @@ export default {
 					name: "status",
 					displayName: "Status",
 					property: "status",
-					filterTypes: ["exact", "regex"],
+					filterTypes: ["exact"],
 					defaultFilterType: "exact",
 					dropdown: [
 						["Active", "Active"],

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

@@ -529,7 +529,7 @@ export default {
 					name: "status",
 					displayName: "Status",
 					property: "status",
-					filterTypes: ["exact", "regex"],
+					filterTypes: ["exact"],
 					defaultFilterType: "exact",
 					dropdown: [
 						["verified", "Verified"],

+ 4 - 4
frontend/src/pages/Admin/tabs/Stations.vue

@@ -294,7 +294,7 @@ export default {
 					name: "type",
 					displayName: "Type",
 					property: "type",
-					filterTypes: ["exact", "regex"],
+					filterTypes: ["exact"],
 					defaultFilterType: "exact",
 					dropdown: [
 						["official", "Official"],
@@ -305,7 +305,7 @@ export default {
 					name: "privacy",
 					displayName: "Privacy",
 					property: "privacy",
-					filterTypes: ["exact", "regex"],
+					filterTypes: ["exact"],
 					defaultFilterType: "exact",
 					dropdown: [
 						["public", "Public"],
@@ -335,7 +335,7 @@ export default {
 					name: "playMode",
 					displayName: "Play Mode",
 					property: "playMode",
-					filterTypes: ["exact", "regex"],
+					filterTypes: ["exact"],
 					defaultFilterType: "exact",
 					dropdown: [
 						["random", "Random"],
@@ -346,7 +346,7 @@ export default {
 					name: "theme",
 					displayName: "Theme",
 					property: "theme",
-					filterTypes: ["exact", "regex"],
+					filterTypes: ["exact"],
 					defaultFilterType: "exact",
 					dropdown: [
 						["blue", "Blue"],

+ 1 - 1
frontend/src/pages/Admin/tabs/Users.vue

@@ -387,7 +387,7 @@ export default {
 						name: "role",
 						displayName: "Role",
 						property: "role",
-						filterTypes: ["exact", "regex"],
+						filterTypes: ["exact"],
 						defaultFilterType: "exact",
 						dropdown: [
 							["admin", "Admin"],