@@ -147,7 +147,12 @@
function initInterval() {
setInterval(() => {
- list({}).then(updateData);
+ list({
+ types: configs.value
+ .filter((e) => e.deviceType)
+ .map((e) => e.deviceType)
+ .join(','),
+ }).then(updateData);
}, 60000);
}