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:
Krzysztof Kotlarek 2020-07-13 10:42:05 +10:00 committed by GitHub
parent 6c91f795d0
commit 180494185c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ export default Component.extend(LoadMore, {
return;
}
if (order !== "default" && order !== "activity") {
if (order && order !== "activity") {
return;
}