Skip to content

Commit

Permalink
πŸ”€ Merge pull request #15 from HiBixby/hotfix
Browse files Browse the repository at this point in the history
πŸ› μ•Œλ¦Ό μƒνƒœ μˆ˜μ • λ˜μ§€ μ•ŠλŠ” 버그 μˆ˜μ •
  • Loading branch information
HiBixby authored Feb 20, 2023
2 parents 7bde6e3 + e5b85ba commit b966b93
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<link rel="stylesheet" href="./main.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>웨, 일해</title>
<script type="module" crossorigin src="./assets/index-5c5bc7fc.js"></script>
<link rel="stylesheet" href="./assets/index-fd600e82.css">
<script type="module" crossorigin src="./assets/index-dedecf4e.js"></script>
<link rel="stylesheet" href="./assets/index-66ba074d.css">
</head>
<body>
<div id="app">
Expand Down
2 changes: 1 addition & 1 deletion docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "웨,일해(Whale Hae)",
"description": "μ›¨μΌλŒ€ν•™ 1νŒ€ - 일정 관리 및 링크 μžλ™ μ‹€ν–‰",
"version": "0.1.3",
"version": "0.1.4",
"sidebar_action": {
"default_page": "index.html",
"default_icon": {
Expand Down
2 changes: 1 addition & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "웨,일해(Whale Hae)",
"description": "μ›¨μΌλŒ€ν•™ 1νŒ€ - 일정 관리 및 링크 μžλ™ μ‹€ν–‰",
"version": "0.1.3",
"version": "0.1.4",
"sidebar_action": {
"default_page": "index.html",
"default_icon": {
Expand Down
3 changes: 2 additions & 1 deletion src/views/TodoPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ export default {
const unsavedChanges =
(this.title !== null && this.title !== selectedTodo?.title) ||
(this.link !== null && this.link !== selectedTodo?.link) ||
(this.time !== null && this.time !== selectedTodo?.time);
(this.time !== null && this.time !== selectedTodo?.time) ||
(this.noti !== true && this.noti !== selectedTodo?.noti);
if (
unsavedChanges &&
Expand Down

0 comments on commit b966b93

Please sign in to comment.