Skip to content
GitLab
Next
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (2)
(fix) recently visited channel reload error
· 0f1f2c83
Martin Santangelo
authored
Dec 05, 2019
0f1f2c83
Merge branch 'fix/latest-channel-white-screen-reload' into 'release/3.12.1'
· e1b46243
Martin Santangelo
authored
Dec 09, 2019
Fix recently visited channel reload error See merge request
!441
e1b46243
Hide whitespace changes
Inline
Side-by-side
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
();
}
...
...