fix: show users grid when deleting a Person
This commit is contained in:
parent
f5ec161687
commit
270aee31e1
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ class PersonView(MasterView): # pylint: disable=abstract-method
|
||||||
# users
|
# users
|
||||||
if self.creating or self.editing:
|
if self.creating or self.editing:
|
||||||
f.remove("users")
|
f.remove("users")
|
||||||
elif self.viewing:
|
else:
|
||||||
f.set_grid("users", self.make_users_grid(person))
|
f.set_grid("users", self.make_users_grid(person))
|
||||||
|
|
||||||
def make_users_grid(self, person):
|
def make_users_grid(self, person):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue