this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

tweaks

EGOIST 15f7f275 60366dc5

+24 -10
+24 -10
src/app.tsx
··· 223 223 <div className="flex items-center justify-between p-2 border-b"> 224 224 <span>锐评提示词</span> 225 225 226 - <button 227 - type="button" 228 - className="text-sm text-zinc-500" 229 - onClick={() => { 230 - navigator.clipboard.writeText(prompt) 231 - toast.success("复制成功") 232 - }} 233 - > 234 - 复制 235 - </button> 226 + <div className="flex items-center gap-4"> 227 + <button 228 + type="button" 229 + className="text-sm text-zinc-500 hover:bg-zinc-100 px-1.5 h-7 flex items-center rounded-md" 230 + onClick={() => { 231 + navigator.clipboard.writeText(prompt) 232 + toast.success("复制成功") 233 + }} 234 + > 235 + 复制 236 + </button> 237 + 238 + <button 239 + type="button" 240 + className="text-sm text-zinc-500 hover:bg-zinc-100 px-1.5 h-7 flex items-center rounded-md" 241 + onClick={() => { 242 + location.href = `chatwise://chat?input=${encodeURIComponent( 243 + prompt 244 + )}` 245 + }} 246 + > 247 + 在 ChatWise 中打开 (需要先安装) 248 + </button> 249 + </div> 236 250 </div> 237 251 <textarea 238 252 readOnly