Skip to content

Commit

Permalink
投稿フォーム検索許可選択ポップアップの位置を修正 (kokonect-link#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
kozakura913 authored Nov 7, 2024
1 parent 628cccc commit bdb22e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/frontend/src/components/MkPostForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const textareaEl = shallowRef<HTMLTextAreaElement | null>(null);
const cwInputEl = shallowRef<HTMLInputElement | null>(null);
const hashtagsInputEl = shallowRef<HTMLInputElement | null>(null);
const visibilityButton = shallowRef<HTMLElement>();
const searchableByButton = shallowRef<HTMLElement>();
const searchbilityButton = shallowRef<HTMLElement>();

const posting = ref(false);
const posted = ref(false);
Expand Down Expand Up @@ -533,7 +533,7 @@ function setVisibility() {
function setSearchbility() {
const { dispose } = os.popup(defineAsyncComponent(() => import('@/components/CPSearchbilityPicker.vue')), {
currentSearchbility: searchableBy.value,
src: searchableByButton.value,
src: searchbilityButton.value,
}, {
changeSearchbility: v => {
searchableBy.value = v;
Expand Down

0 comments on commit bdb22e2

Please sign in to comment.