comparison libervia/pages/lists/edit/page_meta.py @ 1501:5cc6734093a6

pages (lists/edit): fix serialisation on `listGet` call
author Goffi <goffi@goffi.org>
date Thu, 06 Oct 2022 17:26:31 +0200
parents b46fec21ceb9
children 106bae41f5c8
comparison
equal deleted inserted replaced
1500:0f9409b831f7 1501:5cc6734093a6
49 service.full() if service else "", 49 service.full() if service else "",
50 node, 50 node,
51 C.NO_LIMIT, 51 C.NO_LIMIT,
52 [item_id], 52 [item_id],
53 "", 53 "",
54 {}, 54 data_format.serialise({}),
55 profile, 55 profile,
56 ) 56 )
57 list_items, metadata = data_format.deserialise(list_raw, type_check=list) 57 list_items, metadata = data_format.deserialise(list_raw, type_check=list)
58 list_item = [template_xmlui.create(self.host, x, ignore=ignore) for x in list_items][0] 58 list_item = [template_xmlui.create(self.host, x, ignore=ignore) for x in list_items][0]
59 59