Skip to content

Commit

Permalink
Added pointer on checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
nricciardi committed Jun 10, 2023
1 parent 58062be commit d10aef0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/dist/frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@
});

</script>
<script src="runtime.0ff8b5c7db2b67dc.js" type="module"></script><script src="polyfills.794d7387aea30963.js" type="module"></script><script src="main.05f96e8b184b7ab9.js" type="module"></script>
<script src="runtime.0ff8b5c7db2b67dc.js" type="module"></script><script src="polyfills.794d7387aea30963.js" type="module"></script><script src="main.1049be61193f0d3a.js" type="module"></script>

</body></html>

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="checkbox checkbox-shadow">
<input
type="checkbox"
class="form-check-input"
class="form-check-input cursor-pointer"
[id]="'checkbox-todo-' + item.id"
[checked]="!!item.done"
(click)="done()"
Expand Down
3 changes: 0 additions & 3 deletions lib/repo/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from lib.utils.utils import Utils
from pprint import pprint
from time import perf_counter
from lib.app.app import AppManager

# global variables to pass associations to RepoNode dataclass
associations_commits_tags: Dict[str, str] = dict() # hexsha - tag's name
Expand Down Expand Up @@ -380,6 +379,4 @@ def create_app_branch(self) -> bool:
# if not self.valid_opened_repo():
# Logger.log_error(msg="impossible to create branch: repo not found", is_verbose=self.verbose)
# return False
#
# APP_BRANCH_NAME = AppManager.APP_NAME

0 comments on commit d10aef0

Please sign in to comment.