Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Lera24 committed Dec 13, 2024
2 parents a437413 + 866e50c commit d7fc38d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@


## [v24.12.21] - 2024-12-13
### :bug: Bug Fixes
- [`55398a0`](https://github.com/webitel/webitel-ui-sdk/commit/55398a0397d2923a5a99400887378834053fe440) - implement locales for useTableEmpty [WTEL-5642](https://webitel.atlassian.net/browse/WTEL-5642)


## [v24.12.20] - 2024-12-12
### :bug: Bug Fixes
- [`e3a0342`](https://github.com/webitel/webitel-ui-sdk/commit/e3a0342b485c8aefa4ee23c6eb49ebe3bd6ae560) - order action in wt-action-bar component[WTEL-5721](https://webitel.atlassian.net/browse/WTEL-5721) *(commit by [@Lera24](https://github.com/Lera24))*
Expand Down Expand Up @@ -451,3 +456,4 @@
[v24.12.18]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.17...v24.12.18
[v24.12.19]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.18...v24.12.19
[v24.12.20]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.19...v24.12.20
[v24.12.21]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.20...v24.12.21
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.22",
"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 d7fc38d

Please sign in to comment.