Make eslint work with vue files

This commit is contained in:
Tomasz Rymkiewicz
2022-01-01 15:53:55 +01:00
committed by FireMasterK
parent 3349cd69c9
commit c8639c2ce7
4 changed files with 6 additions and 6 deletions

View File

@@ -199,7 +199,7 @@ export default {
var tx = window.db.transaction("watch_history", "readwrite");
var store = tx.objectStore("watch_history");
var request = store.get(videoId);
request.onsuccess = function(event) {
request.onsuccess = function (event) {
var video = event.target.result;
if (video) {
video.watchedAt = Date.now();