Explorar el Código

Merge pull request #12866 from nikhilponnuru/version-13

fix: newly created Workspace not being accessible unless a shortcut u…
version-14
mergify[bot] hace 4 años
committed by GitHub
padre
commit
b71f8dcba1
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      frappe/desk/desktop.py

+ 1
- 1
frappe/desk/desktop.py Ver fichero

@@ -63,7 +63,7 @@ class Workspace:
for section in cards:
links = loads(section.get('links')) if isinstance(section.get('links'), string_types) else section.get('links')
for item in links:
if self.is_item_allowed(item.get('name'), item.get('type')):
if self.is_item_allowed(item.get('link_to'), item.get('link_type')):
return True

def _in_active_domains(item):


Cargando…
Cancelar
Guardar