mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-06 00:47:09 +00:00
refactor(control): remove unnecessary comments
This commit is contained in:
@@ -1,7 +1,3 @@
|
|||||||
// TODO:
|
|
||||||
// 1. Download von tasks trennen
|
|
||||||
// 2. Sync hinzufügen
|
|
||||||
|
|
||||||
import { db } from './database';
|
import { db } from './database';
|
||||||
import { get_display_by_id } from './stores/displays';
|
import { get_display_by_id } from './stores/displays';
|
||||||
import {
|
import {
|
||||||
@@ -123,7 +119,7 @@ async function find_file_data_on_active_selected_display(
|
|||||||
const active_selected_displays = await db.displays
|
const active_selected_displays = await db.displays
|
||||||
.where('id')
|
.where('id')
|
||||||
.anyOf(selected_display_ids)
|
.anyOf(selected_display_ids)
|
||||||
// .filter((d) => d.status === 'app_online') DEBUG
|
.filter((d) => d.status === 'app_online')
|
||||||
.toArray();
|
.toArray();
|
||||||
const active_selected_display_ids = active_selected_displays.map((d) => d.id);
|
const active_selected_display_ids = active_selected_displays.map((d) => d.id);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user