feat(tags): move tags from navbar to settings (#24518)

Co-authored-by: Daniel Vaz Gaspar <danielvazgaspar@gmail.com>
This commit is contained in:
Hugh A. Miles II
2023-06-28 02:53:49 -04:00
committed by GitHub
parent 750113441c
commit a846e8a58d
4 changed files with 3 additions and 14 deletions

View File

@@ -383,9 +383,7 @@ class DatabaseRestApi(BaseSupersetModelRestApi):
# Return SSH Tunnel and hide passwords if any
if item.get("ssh_tunnel"):
item["ssh_tunnel"] = mask_password_info(
new_model.ssh_tunnel # pylint: disable=no-member
)
item["ssh_tunnel"] = mask_password_info(new_model.ssh_tunnel)
return self.response(201, id=new_model.id, result=item)
except DatabaseInvalidError as ex: