mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
parent
1c03633c62
commit
f1e4380582
2 changed files with 14 additions and 1 deletions
|
@ -1,6 +1,10 @@
|
|||
<template>
|
||||
<h1 class="uk-text-bold uk-text-center">{{ $t("titles.history") }}</h1>
|
||||
|
||||
<div style="text-align: left">
|
||||
<button class="uk-button" v-t="'actions.clear_history'" @click="clearHistory"></button>
|
||||
</div>
|
||||
|
||||
<div style="text-align: right">
|
||||
<label for="ddlSortBy">{{ $t("actions.sort_by") }}</label>
|
||||
<select id="ddlSortBy" v-model="selectedSort" class="uk-select uk-width-auto" @change="onChange()">
|
||||
|
@ -86,6 +90,14 @@ export default {
|
|||
break;
|
||||
}
|
||||
},
|
||||
clearHistory() {
|
||||
if (window.db) {
|
||||
var tx = window.db.transaction("watch_history", "readwrite");
|
||||
var store = tx.objectStore("watch_history");
|
||||
store.clear();
|
||||
}
|
||||
this.videos = [];
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
@ -64,7 +64,8 @@
|
|||
"view_ssl_score": "View SSL Score",
|
||||
"search": "Search",
|
||||
"filter": "Filter",
|
||||
"loading": "Loading..."
|
||||
"loading": "Loading...",
|
||||
"clear_history": "Clear History"
|
||||
},
|
||||
"comment": {
|
||||
"pinned_by": "Pinned by"
|
||||
|
|
Loading…
Reference in a new issue