Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

投稿フォーム検索許可選択ポップアップの位置を修正 #537

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading