BetterGifSend: improve option readability
Some checks failed
Sync to Codeberg / codeberg (push) Has been cancelled
test / test (push) Has been cancelled

This commit is contained in:
ryana mittens 2024-09-08 22:48:03 +08:00
parent 7735d1a07b
commit 1f0c9c985f

View file

@ -30,11 +30,11 @@ const settings = definePluginSettings({
sendBehavior: { sendBehavior: {
type: OptionType.SELECT, type: OptionType.SELECT,
default: "Send", default: "Send",
description: "Choose how GIFs are added to your chats", description: "Choose how GIF selection is handled",
restartNeeded: false, restartNeeded: false,
options: [ options: [
{ value: "Send", label: "Send immediately" }, { value: "Send", label: "Send immediately" },
{ value: "Insert", label: "Insert into chatbox" }, { value: "Insert", label: "Insert into chatbox (GifPaste behavior)" },
{ value: "InsertWithShift", label: "Insert link if SHIFT is held" } { value: "InsertWithShift", label: "Insert link if SHIFT is held" }
] ]
}, },