FIX: last visit bar regression (#10224)
Last visit regression bar is missing because of that change https://github.com/discourse/discourse/commit/9b7000dbf10 Order property was changed from "default" to null and it was picked by guard condition
This commit is contained in:
parent
6c91f795d0
commit
180494185c
|
@ -85,7 +85,7 @@ export default Component.extend(LoadMore, {
|
|||
return;
|
||||
}
|
||||
|
||||
if (order !== "default" && order !== "activity") {
|
||||
if (order && order !== "activity") {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue