いろいろかえた
This commit is contained in:
parent
7a3eb26c4d
commit
9031d41812
|
@ -2916,11 +2916,14 @@ export interface Locale extends ILocale {
|
||||||
* 送信
|
* 送信
|
||||||
*/
|
*/
|
||||||
"send": string;
|
"send": string;
|
||||||
"reportedNote": string;
|
|
||||||
/**
|
/**
|
||||||
* ファイル付きのみ
|
* ファイル付きのみ
|
||||||
*/
|
*/
|
||||||
"fileAttachedOnly": string;
|
"fileAttachedOnly": string;
|
||||||
|
/**
|
||||||
|
* 通報されたノート
|
||||||
|
*/
|
||||||
|
"reportedNote": string;
|
||||||
/**
|
/**
|
||||||
* 対応済みにする
|
* 対応済みにする
|
||||||
*/
|
*/
|
||||||
|
@ -3702,9 +3705,12 @@ export interface Locale extends ILocale {
|
||||||
*/
|
*/
|
||||||
"emailRequiredForSignup": string;
|
"emailRequiredForSignup": string;
|
||||||
/**
|
/**
|
||||||
* 未読
|
* GDPRモードを有効にする
|
||||||
*/
|
*/
|
||||||
"enableGDPRMode": string;
|
"enableGDPRMode": string;
|
||||||
|
/**
|
||||||
|
* 未読
|
||||||
|
*/
|
||||||
"unread": string;
|
"unread": string;
|
||||||
/**
|
/**
|
||||||
* フィルタ
|
* フィルタ
|
||||||
|
|
|
@ -93,6 +93,9 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
const list = await this.userListsRepository.findOneBy({
|
const list = await this.userListsRepository.findOneBy({
|
||||||
id: ps.listId,
|
id: ps.listId,
|
||||||
isPublic: true,
|
isPublic: true,
|
||||||
|
}) ?? await this.userListsRepository.findOneBy({
|
||||||
|
id: ps.listId,
|
||||||
|
userId: me.id,
|
||||||
});
|
});
|
||||||
|
|
||||||
if (list == null) {
|
if (list == null) {
|
||||||
|
|
|
@ -13,11 +13,10 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { computed, ref } from 'vue';
|
import { computed, ref, watch } from 'vue';
|
||||||
const editMode = ref(false);
|
const editMode = ref(false);
|
||||||
</script>
|
</script>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { ref , computed , watch} from 'vue';
|
|
||||||
import XWidgets from '@/components/MkWidgets.vue';
|
import XWidgets from '@/components/MkWidgets.vue';
|
||||||
import { i18n } from '@/i18n.js';
|
import { i18n } from '@/i18n.js';
|
||||||
import { defaultStore } from '@/store.js';
|
import { defaultStore } from '@/store.js';
|
||||||
|
@ -42,7 +41,7 @@ watch(darkMode, () => {
|
||||||
} else {
|
} else {
|
||||||
gaming.value = '';
|
gaming.value = '';
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
|
|
||||||
watch(gamingMode, () => {
|
watch(gamingMode, () => {
|
||||||
if (darkMode.value && gamingMode.value == true) {
|
if (darkMode.value && gamingMode.value == true) {
|
||||||
|
@ -52,7 +51,7 @@ watch(gamingMode, () => {
|
||||||
} else {
|
} else {
|
||||||
gaming.value = '';
|
gaming.value = '';
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
const props = withDefaults(defineProps<{
|
const props = withDefaults(defineProps<{
|
||||||
// null = 全てのウィジェットを表示
|
// null = 全てのウィジェットを表示
|
||||||
// left = place: leftだけを表示
|
// left = place: leftだけを表示
|
||||||
|
|
Loading…
Reference in New Issue