Skip to content

Commit

Permalink
Merge pull request #392 from webitel/feat/implement-locales-for-useEm…
Browse files Browse the repository at this point in the history
…ptyTable-composible

fix: implement locales for useTableEmpty [WTEL-5642](https://webitel.…
  • Loading branch information
stanislav-kozak authored Dec 13, 2024
2 parents 92a1886 + 55398a0 commit c588551
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webitel/ui-sdk",
"version": "24.12.20",
"version": "24.12.21",
"private": false,
"scripts": {
"dev": "vite",
Expand Down
6 changes: 3 additions & 3 deletions src/modules/TableComponentModule/composables/useTableEmpty.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ export const useTableEmpty = ({ dataList, filters, error, isLoading }, overrides
empty: t('webitelUI.empty.text.empty'),
},
primaryActionText: {
filters: '',
error: '',
empty: '',
filters: t('reusable.add'),
error: t('reusable.add'),
empty: t('reusable.add'),
},
secondaryActionText: {
filters: '',
Expand Down

0 comments on commit c588551

Please sign in to comment.