-
- {{ i18n.ts.withRepliesByDefaultForNewlyFollowed }}
- {{ i18n.ts.showRepliesToOthersInTimelineAll }}
- {{ i18n.ts.hideRepliesToOthersInTimelineAll }}
-
-
@@ -103,7 +96,6 @@ import FormSection from '@/components/form/section.vue';
const reportError = computed(defaultStore.makeGetterSetter('reportError'));
const enableCondensedLineForAcct = computed(defaultStore.makeGetterSetter('enableCondensedLineForAcct'));
const devMode = computed(defaultStore.makeGetterSetter('devMode'));
-const defaultWithReplies = computed(defaultStore.makeGetterSetter('defaultWithReplies'));
function onChangeInjectFeaturedNote(v) {
os.api('i/update', {
@@ -147,15 +139,6 @@ async function reloadAsk() {
unisonReload();
}
-async function updateRepliesAll(withReplies: boolean) {
- const { canceled } = os.confirm({
- type: 'warning',
- text: withReplies ? i18n.ts.confirmShowRepliesAll : i18n.ts.confirmHideRepliesAll,
- });
- if (canceled) return;
- await os.api('following/update-all', { withReplies });
-}
-
watch([
enableCondensedLineForAcct,
], async () => {