Post the actual string content to bbcode endpoint

This commit is contained in:
MD 2022-03-21 14:34:55 +00:00
parent f6c1897747
commit d75c5800d0

View File

@ -18,7 +18,7 @@ const loading = ref(false);
async function convertBBCode() {
loading.value = true;
output.value = await useInternalApi<string>("pages/convert-bbcode", false, "post", {
content: input,
content: input.value,
}).catch<any>((e) => handleRequestError(e, ctx, i18n));
loading.value = false;
}