upd: remove `https`

This commit is contained in:
Marie 2024-02-03 12:38:45 +00:00
parent 83f1c596b0
commit 469c3f3f1a
No known key found for this signature in database
GPG Key ID: 56569BBE47D2C828
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
params.append('text', note.text);
params.append('target_lang', targetLang);
const endpoint = instance.deeplFreeMode && instance.deeplFreeInstance ? `https://${instance.deeplFreeInstance}` : instance.deeplIsPro ? 'https://api.deepl.com/v2/translate' : 'https://api-free.deepl.com/v2/translate';
const endpoint = instance.deeplFreeMode && instance.deeplFreeInstance ? instance.deeplFreeInstance : instance.deeplIsPro ? 'https://api.deepl.com/v2/translate' : 'https://api-free.deepl.com/v2/translate';
const res = await this.httpRequestService.send(endpoint, {
method: 'POST',

View File

@ -23,7 +23,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #label>Use DeepLX-JS (No Auth Key)</template>
</MkSwitch>
<MkInput v-if="deeplFreeMode" v-model="deeplFreeInstance" :placeholder="'example.com/translate'">
<template #prefix>https://</template>
<template #prefix><i class="ph-globe-simple ph-bold ph-lg"></i></template>
<template #label>DeepLX-JS URL</template>
<template #caption>Need Help? Check our documentation to know how to setup DeepLX-JS.</template>
</MkInput>