Skip to content

Commit

Permalink
Merge pull request #73 from anatawa12/revert-reply-visibility
Browse files Browse the repository at this point in the history
Revert reply visibility
  • Loading branch information
anatawa12 authored Oct 7, 2023
2 parents 2d21405 + ef1bc9f commit 1a6f578
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
### General
- ノート編集機能を削除
- roleにより禁止されてたためユーザには影響がありません。
- 様々なカラムでリプライが表示されないのを表示されるように戻しました

### Client

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const paramDef = {
includeMyRenotes: { type: 'boolean', default: true },
includeRenotedMyNotes: { type: 'boolean', default: true },
includeLocalRenotes: { type: 'boolean', default: true },
withReplies: { type: 'boolean', default: false },
withReplies: { type: 'boolean', default: true },
withRenotes: { type: 'boolean', default: true },
withFiles: {
type: 'boolean',
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/components/MkTimeline.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const props = withDefaults(defineProps<{
onlyFiles?: boolean;
}>(), {
withRenotes: true,
withReplies: false,
withReplies: true,
onlyFiles: false,
});

Expand Down

0 comments on commit 1a6f578

Please sign in to comment.