forked from open-webui/open-webui
chore: format
This commit is contained in:
parent
7a5a3c45e0
commit
b79596332a
1 changed files with 12 additions and 12 deletions
|
@ -15,22 +15,22 @@
|
||||||
|
|
||||||
function loadReasons() {
|
function loadReasons() {
|
||||||
LIKE_REASONS = [
|
LIKE_REASONS = [
|
||||||
$i18n.t("Accurate information"),
|
$i18n.t('Accurate information'),
|
||||||
$i18n.t("Followed instructions perfectly"),
|
$i18n.t('Followed instructions perfectly'),
|
||||||
$i18n.t("Showcased creativity"),
|
$i18n.t('Showcased creativity'),
|
||||||
$i18n.t("Positive attitude"),
|
$i18n.t('Positive attitude'),
|
||||||
$i18n.t("Attention to detail"),
|
$i18n.t('Attention to detail'),
|
||||||
$i18n.t("Thorough explanation"),
|
$i18n.t('Thorough explanation'),
|
||||||
$i18n.t("Other")
|
$i18n.t('Other')
|
||||||
];
|
];
|
||||||
|
|
||||||
DISLIKE_REASONS = [
|
DISLIKE_REASONS = [
|
||||||
$i18n.t("Don't like the style"),
|
$i18n.t("Don't like the style"),
|
||||||
$i18n.t("Not factually correct"),
|
$i18n.t('Not factually correct'),
|
||||||
$i18n.t("Didn't fully follow instructions"),
|
$i18n.t("Didn't fully follow instructions"),
|
||||||
$i18n.t("Refused when it shouldn't have"),
|
$i18n.t("Refused when it shouldn't have"),
|
||||||
$i18n.t("Being lazy"),
|
$i18n.t('Being lazy'),
|
||||||
$i18n.t("Other")
|
$i18n.t('Other')
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,7 +107,7 @@
|
||||||
<textarea
|
<textarea
|
||||||
bind:value={comment}
|
bind:value={comment}
|
||||||
class="w-full text-sm px-1 py-2 bg-transparent outline-none resize-none rounded-xl"
|
class="w-full text-sm px-1 py-2 bg-transparent outline-none resize-none rounded-xl"
|
||||||
placeholder="{$i18n.t('Feel free to add specific details')}"
|
placeholder={$i18n.t('Feel free to add specific details')}
|
||||||
rows="2"
|
rows="2"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue