mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	fix(frontend_reversi): 共有ボタンの実装を改善 (#13750)
* fix(frontend_reversi): 共有ボタンの実装を改善 * Update Changelog --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									7ce6a9bbaf
								
							
						
					
					
						commit
						78e61c65be
					
				
					 2 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
					@ -53,6 +53,7 @@
 | 
				
			||||||
- Fix: ダイレクト投稿の宛先が保存されない問題を修正
 | 
					- Fix: ダイレクト投稿の宛先が保存されない問題を修正
 | 
				
			||||||
- Fix: Playのページを離れたときに、Playが正常に初期化されない問題を修正
 | 
					- Fix: Playのページを離れたときに、Playが正常に初期化されない問題を修正
 | 
				
			||||||
- Fix: ページのOGP URLが間違っているのを修正
 | 
					- Fix: ページのOGP URLが間違っているのを修正
 | 
				
			||||||
 | 
					- Fix: リバーシの対局を正しく共有できないことがある問題を修正
 | 
				
			||||||
- Fix: 通知をグループ化している際に、人数が正常に表示されないことがある問題を修正
 | 
					- Fix: 通知をグループ化している際に、人数が正常に表示されないことがある問題を修正
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Server
 | 
					### Server
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -151,6 +151,7 @@ import MkSwitch from '@/components/MkSwitch.vue';
 | 
				
			||||||
import { deepClone } from '@/scripts/clone.js';
 | 
					import { deepClone } from '@/scripts/clone.js';
 | 
				
			||||||
import { useInterval } from '@/scripts/use-interval.js';
 | 
					import { useInterval } from '@/scripts/use-interval.js';
 | 
				
			||||||
import { signinRequired } from '@/account.js';
 | 
					import { signinRequired } from '@/account.js';
 | 
				
			||||||
 | 
					import { url } from '@/config.js';
 | 
				
			||||||
import { i18n } from '@/i18n.js';
 | 
					import { i18n } from '@/i18n.js';
 | 
				
			||||||
import { misskeyApi } from '@/scripts/misskey-api.js';
 | 
					import { misskeyApi } from '@/scripts/misskey-api.js';
 | 
				
			||||||
import { userPage } from '@/filters/user.js';
 | 
					import { userPage } from '@/filters/user.js';
 | 
				
			||||||
| 
						 | 
					@ -442,7 +443,7 @@ function autoplay() {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function share() {
 | 
					function share() {
 | 
				
			||||||
	os.post({
 | 
						os.post({
 | 
				
			||||||
		initialText: `#MisskeyReversi ${location.href}`,
 | 
							initialText: `#MisskeyReversi\n${url}/reversi/g/${game.value.id}`,
 | 
				
			||||||
		instant: true,
 | 
							instant: true,
 | 
				
			||||||
	});
 | 
						});
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue