diff --git a/app/components/CopyCom.vue b/app/components/CopyCom.vue index c3044dc..bc2e2cb 100644 --- a/app/components/CopyCom.vue +++ b/app/components/CopyCom.vue @@ -58,7 +58,7 @@ defineExpose({ isCopied }); :variant="variant" :size="size" :disabled="disabled" - :class="cn('relative overflow-hidden pl-8', className)" + :class="cn('relative overflow-hidden pl-7', className)" @click.prevent.stop="handleCopy" > diff --git a/app/components/dashboard/QaRecordsTable.vue b/app/components/dashboard/QaRecordsTable.vue index 4bffcd6..ccde928 100644 --- a/app/components/dashboard/QaRecordsTable.vue +++ b/app/components/dashboard/QaRecordsTable.vue @@ -14,8 +14,19 @@ import { CardHeader, CardTitle } from "@/components/ui/card"; +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue +} from "@/components/ui/select"; import type { IQaRecord } from "@/interfaces"; -import { QUESTION_TYPE_LABELS, useAnswerStore } from "@/stores/answer"; +import { + DASHBOARD_PAGE_SIZE_OPTIONS, + QUESTION_TYPE_LABELS, + useAnswerStore +} from "@/stores/answer"; const answerStore = useAnswerStore(); const { @@ -78,8 +89,29 @@ const displayOptions = (record: IQaRecord) => {