From: Andrea Zagli Date: Wed, 9 Sep 2020 13:57:12 +0000 (+0200) Subject: On load if no key fields returns the first array element. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;p=zakform%2Fjson On load if no key fields returns the first array element. --- diff --git a/src/form.c b/src/form.c index ecf0549..ad2b1d3 100644 --- a/src/form.c +++ b/src/form.c @@ -402,8 +402,14 @@ static JsonObject if (k < 1) { + /* TODO add a property to make this behaviour variable */ /* no key fields */ - return NULL; + /* returns the first record */ + ar = json_node_get_array (priv->root); + jnode = json_array_get_element (ar, 0); + obj = json_node_get_object (jnode); + + return obj; } ok = FALSE;