thingsdb / ThingsGUI

Graphical interface for managing ThingsDB
GNU General Public License v3.0
8 stars 0 forks source link

simplified tasks query #272

Closed joente closed 4 months ago

joente commented 5 months ago

The following query is used:

tasks = tasks(); return tasks.map(|t| {id: t.id(), at: t.at(), err: t.err()});

This can be simplified to:

tasks().map(|t| {id: t.id(), at: t.at(), err: t.err()});
AnjaBruls commented 4 months ago

Updated in release v1.3.3