Mercurial > libervia-backend
diff sat_frontends/jp/base.py @ 4042:877145b4ba01
core: don't use `meta_` prefix anymore for `action_extra` in `action_new` signal.
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 15 May 2023 16:20:50 +0200 |
parents | 2594e1951cf7 |
children | 4b842c1fb686 |
line wrap: on
line diff
--- a/sat_frontends/jp/base.py Mon May 15 16:20:45 2023 +0200 +++ b/sat_frontends/jp/base.py Mon May 15 16:20:50 2023 +0200 @@ -1398,7 +1398,7 @@ return action_data = data_format.deserialise(action_data_s) try: - action_type = action_data['meta_type'] + action_type = action_data['type'] except KeyError: try: xml_ui = action_data["xmlui"]