Browse Source

fix: eslint fixes

Owen Diffey 2 years ago
parent
commit
9f2421969d

+ 1 - 1
backend/logic/actions/playlists.js

@@ -498,7 +498,7 @@ export default {
 	 * @param {string} query - the page
 	 * @param {Function} cb - gets called with the result
 	 */
-	 searchAdmin: useHasPermission("playlists.get", async function searchAdmin(session, query, page, cb) {
+	searchAdmin: useHasPermission("playlists.get", async function searchAdmin(session, query, page, cb) {
 		async.waterfall(
 			[
 				next => {

+ 1 - 7
frontend/src/components/modals/BulkEditPlaylist.vue

@@ -1,11 +1,5 @@
 <script setup lang="ts">
-import {
-	reactive,
-	computed,
-	defineAsyncComponent,
-	onMounted,
-	onBeforeUnmount
-} from "vue";
+import { reactive, computed, defineAsyncComponent } from "vue";
 import Toast from "toasters";
 import { useWebsocketsStore } from "@/stores/websockets";
 import { useLongJobsStore } from "@/stores/longJobs";