Merge branch 'develop' into feat/setup-eslint-rules

This commit is contained in:
Sivin Varghese
2024-07-31 11:18:32 +05:30
committed by GitHub
3 changed files with 7 additions and 7 deletions
@@ -25,7 +25,7 @@ export default {
</script>
<template>
<table>
<table class="woot-table">
<thead>
<tr>
<th scope="col">
@@ -20,7 +20,7 @@ export default {
<template>
<div>
<table>
<table class="woot-table">
<thead>
<tr>
<th scope="col">
@@ -86,7 +86,7 @@ export default {
</table>
<p
v-if="categories.length === 0"
class="flex justify-center text-slate-500 dark:text-slate-300 text-base mt-8"
class="flex justify-center mt-8 text-base text-slate-500 dark:text-slate-300"
>
{{ $t('HELP_CENTER.PORTAL.EDIT.CATEGORIES.TABLE.EMPTY_TEXT') }}
</p>
@@ -114,7 +114,7 @@ export default {
<label>
{{ $t('INBOX_MGMT.PRE_CHAT_FORM.PRE_CHAT_MESSAGE.LABEL') }}
</label>
<WootMessageEditor
<woot-message-editor
v-model="preChatMessage"
class="message-editor"
:placeholder="
@@ -124,7 +124,7 @@ export default {
</div>
<div class="w-[70%] mt-4">
<label>{{ $t('INBOX_MGMT.PRE_CHAT_FORM.SET_FIELDS') }}</label>
<table class="table w-full table-striped">
<table class="table w-full table-striped woot-table">
<thead class="thead-dark">
<tr>
<th scope="col" />
@@ -152,10 +152,10 @@ export default {
</th>
</tr>
</thead>
<PreChatFields
<pre-chat-fields
:pre-chat-fields="preChatFields"
@update="handlePreChatFieldOptions"
@dragEnd="changePreChatFieldFieldsOrder"
@drag-end="changePreChatFieldFieldsOrder"
/>
</table>
</div>