]> BookStack Code Mirror - bookstack/blobdiff - resources/js/components/sortable-list.js
Ran eslint fix on existing codebase
[bookstack] / resources / js / components / sortable-list.js
index bbbd92088ab9f3191e516cecae9833c2058b05a7..7b0c4f243b487ff36853f0cb73985d1be78e74ed 100644 (file)
@@ -1,5 +1,5 @@
-import Sortable from "sortablejs";
-import {Component} from "./component";
+import Sortable from 'sortablejs';
+import {Component} from './component';
 
 /**
  * SortableList
@@ -9,6 +9,7 @@ import {Component} from "./component";
  * the data to set on the data-transfer.
  */
 export class SortableList extends Component {
+
     setup() {
         this.container = this.$el;
         this.handleSelector = this.$opts.handleSelector;
@@ -33,4 +34,5 @@ export class SortableList extends Component {
             dragoverBubble: false,
         });
     }
-}
\ No newline at end of file
+
+}