Skip to content

Commit

Permalink
fix: breadcrumbs
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Jun 3, 2024
1 parent cb67c17 commit af6e197
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unicms_unical_storage_handler/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def as_view(self):

@property
def get_base_url(self):
url = f'{self.webpath.get_full_path()}/{CMS_STORAGE_BASE_PATH}/'
url = f'/{CMS_STORAGE_BASE_PATH}/'
return sanitize_path(url)

@property
Expand Down Expand Up @@ -291,7 +291,7 @@ def as_view(self):

@property
def parent_url(self):
url = f'{self.webpath.get_full_path()}/{CMS_STORAGE_BASE_PATH}/{CMS_STORAGE_TEACHER_VIEW_PREFIX_PATH}/'
url = f'/{CMS_STORAGE_BASE_PATH}/{CMS_STORAGE_TEACHER_VIEW_PREFIX_PATH}/'
return sanitize_path(url)

@property
Expand Down

0 comments on commit af6e197

Please sign in to comment.