Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Mobile
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
204
Merge Requests
15
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Minds
Minds Mobile
Compare Revisions
03b04e4ecb296ec6480e1842180f7212edb9c41f...e1b46243a98ee41a2061383a737550ba1437e195
Source
e1b46243a98ee41a2061383a737550ba1437e195
...
Target
03b04e4ecb296ec6480e1842180f7212edb9c41f
Compare
Commits (2)
(fix) recently visited channel reload error
· 0f1f2c83
Martin Santangelo
authored
4 days ago
0f1f2c83
Merge branch 'fix/latest-channel-white-screen-reload' into 'release/3.12.1'
· e1b46243
Martin Santangelo
authored
30 minutes ago
Fix recently visited channel reload error See merge request
!441
e1b46243
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/discovery/DiscoveryStore.js
View file @
e1b46243
...
...
@@ -121,6 +121,10 @@ class DiscoveryStore {
*/
@
action
reload
()
{
// ignore reload for latest channels
if
(
this
.
filters
.
type
===
'
lastchannels
'
)
{
return
;
}
this
.
listStore
.
clear
();
this
.
fetch
();
}
...
...
This diff is collapsed.