Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion web_field_tooltip/models/res_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ def TOOLTIP_READABLE_FIELDS(self):

@property
def SELF_READABLE_FIELDS(self):
return super().SELF_READABLE_FIELDS + self.TOOLTIP_READABLE_FIELDS
return (
super().SELF_READABLE_FIELDS
+ self.TOOLTIP_READABLE_FIELDS
+ ["tooltip_show_add_helper_allowed"]
)

@property
def SELF_WRITEABLE_FIELDS(self):
Expand Down
Loading