Skip to content
Snippets Groups Projects
Commit 6394776f authored by Philipp Hörist's avatar Philipp Hörist
Browse files

VCardGrid: Fix storing org property values

Fixes #10377
parent 1b55c3fa
No related branches found
No related tags found
No related merge requests found
......@@ -583,7 +583,7 @@ def __init__(self, prop, account):
def _on_text_changed(self, entry, _param):
text = entry.get_text()
if self._prop.name == 'org':
self._prop.values[0] = text
self._prop.values = [text]
else:
self._prop.value = text
self._value_label.set_value(text)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment