This commit is contained in:
Nazar Kanaev 2020-07-30 21:31:40 +01:00
parent fb0833618f
commit ed1d5bf703
2 changed files with 2 additions and 1 deletions

View File

@ -203,6 +203,7 @@ var vm = new Vue({
'filterSelected': function(newVal, oldVal) { 'filterSelected': function(newVal, oldVal) {
if (oldVal === null) return // do nothing, initial setup if (oldVal === null) return // do nothing, initial setup
api.settings.update({filter: newVal}).then(this.refreshItems.bind(this)) api.settings.update({filter: newVal}).then(this.refreshItems.bind(this))
this.itemSelected = null
}, },
'feedSelected': function(newVal, oldVal) { 'feedSelected': function(newVal, oldVal) {
if (oldVal === null) return // do nothing, initial setup if (oldVal === null) return // do nothing, initial setup

View File

@ -350,7 +350,7 @@ select.form-control:not([multiple]):not([size]) {
line-height: 1.5; line-height: 1.5;
} }
.content img { .content img, .content video {
max-width: 100%; max-width: 100%;
} }