feeds-fun 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/views/NewsView.vue +3 -3
package/package.json
CHANGED
package/src/views/NewsView.vue
CHANGED
|
@@ -169,13 +169,13 @@
|
|
|
169
169
|
});
|
|
170
170
|
|
|
171
171
|
const hasRules = computed(() => {
|
|
172
|
-
if (
|
|
172
|
+
if (entriesStore.loadedEntriesReport === null) {
|
|
173
173
|
return false;
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
-
// TODO:
|
|
176
|
+
// TODO: it is a heuristic (score could be 0 even with rules)
|
|
177
177
|
// must be refactored to something more stable
|
|
178
|
-
for (const entryId of
|
|
178
|
+
for (const entryId of entriesStore.loadedEntriesReport) {
|
|
179
179
|
if (entriesStore.entries[entryId].score != 0) {
|
|
180
180
|
return true;
|
|
181
181
|
}
|