Skip to content

Commit d10aef0

Browse files
committed
Added pointer on checkbox
1 parent 58062be commit d10aef0

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

frontend/dist/frontend/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
});
4545

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

4949
</body></html>

frontend/dist/frontend/main.05f96e8b184b7ab9.js renamed to frontend/dist/frontend/main.1049be61193f0d3a.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/src/app/widget/task/task-todo-item/task-todo-item.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<div class="checkbox checkbox-shadow">
88
<input
99
type="checkbox"
10-
class="form-check-input"
10+
class="form-check-input cursor-pointer"
1111
[id]="'checkbox-todo-' + item.id"
1212
[checked]="!!item.done"
1313
(click)="done()"

lib/repo/repo.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from lib.utils.utils import Utils
1010
from pprint import pprint
1111
from time import perf_counter
12-
from lib.app.app import AppManager
1312

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

0 commit comments

Comments
 (0)