mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-28 09:36:56 +00:00
Clean up hidden check
This commit is contained in:
parent
33387b303c
commit
2305eb9e97
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ const props = defineProps<{
|
|||
const isSensitive = computed(() => { return props.flashFile.isSensitive; });
|
||||
const url = computed(() => { return props.flashFile.url; });
|
||||
const comment = computed(() => { return props.flashFile.comment ?? ''; });
|
||||
let hide = ref((defaultStore.state.nsfw === 'force') ? true : isSensitive.value && (defaultStore.state.nsfw !== 'ignore'));
|
||||
let hide = ref((defaultStore.state.nsfw === 'force') || isSensitive.value && (defaultStore.state.nsfw !== 'ignore'));
|
||||
let playerHide = ref(true);
|
||||
let ruffleContainer = ref<HTMLDivElement>();
|
||||
let playPauseButtonKey = ref<number>(0);
|
||||
|
|
Loading…
Add table
Reference in a new issue