diff --git a/packages/nc-gui/components/smartsheet/Pagination.vue b/packages/nc-gui/components/smartsheet/Pagination.vue index 7cc08d7d3e..4bd45cd171 100644 --- a/packages/nc-gui/components/smartsheet/Pagination.vue +++ b/packages/nc-gui/components/smartsheet/Pagination.vue @@ -2,9 +2,11 @@ import { ChangePageInj, PaginationDataInj, computed, iconMap, inject, isRtlLang, useI18n } from '#imports' import type { Language } from '~/lib' -const props = defineProps<{ +interface Props { alignCountOnRight?: boolean -}>() +} + +const { alignCountOnRight } = defineProps() const { locale } = useI18n() diff --git a/packages/nc-gui/components/smartsheet/header/Icon.vue b/packages/nc-gui/components/smartsheet/header/Icon.vue index ff56b943ea..159ef471b0 100644 --- a/packages/nc-gui/components/smartsheet/header/Icon.vue +++ b/packages/nc-gui/components/smartsheet/header/Icon.vue @@ -1,8 +1,8 @@