Skip to content

Commit

Permalink
fix: Fix minor GUI bug
Browse files Browse the repository at this point in the history
  • Loading branch information
drorganvidez committed Oct 10, 2024
1 parent c6349b2 commit a86d7b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/modules/hubfile/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def to_dict(self):

def get_full_path(self) -> str:
return os.path.join(
os.getenv("WORKING_DIR",""),
os.getenv("WORKING_DIR", ""),
"uploads",
f"user_{self.feature_model.data_set.user_id}",
f"dataset_{self.feature_model.data_set_id}",
Expand Down
2 changes: 1 addition & 1 deletion app/templates/base_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@

<a href="/dataset/download/all" class="nav-link d-none d-sm-inline-block" style="border-radius: 5px;">
<i data-feather="download-cloud"></i>
Get the entire collection!
Get all datasets!
</a>

<button onclick="goToMyCart()" class="nav-link d-none d-sm-inline-block" style="border-radius: 5px;">
Expand Down

0 comments on commit a86d7b6

Please sign in to comment.