Skip to content

Commit

Permalink
release: v2024.3.1-kakurega.1.36.1 (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
hideki0403 authored Apr 19, 2024
2 parents 622daf5 + e22c123 commit 0d51ee4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG_KAKUREGA.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.36.1
Release: 2024/04/19
Base: 2024.3.1

### 修正
- 下書きを「都度保存する」に設定している場合に、意図していないタイミングで保存確認ダイアログが出てしまう問題を修正

## 1.36.0
Release: 2024/04/18
Base: 2024.3.1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2024.3.1-kakurega.1.36.0",
"version": "2024.3.1-kakurega.1.36.1",
"codename": "nasubi",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/components/MkPostForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ function cancel() {
}
async function closed() {
if (defaultStore.state.draftSavingBehavior === 'manual' && (text.value !== '' || files.value.length > 0)) {
if (defaultStore.state.draftSavingBehavior === 'manual' && !posted.value && (text.value !== '' || files.value.length > 0)) {
os.confirm({
type: 'question',
text: i18n.ts.saveConfirm,
Expand Down

0 comments on commit 0d51ee4

Please sign in to comment.