You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we don't have any way to support messages with translation for PageLoadingTable. Since it is using Table component under the hood to render the Table and Table component supports noRowsMsg prop to display message so in PageLoadingTable component I introduced noRowsMsg prop for Table component to render messages in PageLoadingTable.
Expected Behavior
PageLoadingTable component should display provided message and its translation in EN and DE.
Steps To Reproduce
Technical User Management is one of Page which is using PageLoadingTable component .
Login to Portal App.
Navigate to the Technical user management.
Search for data that doesn't exist (No search data case).
View the table when no data is present (Empty Table case).
The text was updated successfully, but these errors were encountered:
@Usmanfee currently the shared components don't support i18n at all. All texts and messages have to be translated before and passed as props by the calling application. So I guess this means we have to expose the nowRowsMsg in the API.
On the long run it would be nice to have shared components handle translations but if we decide to do that we should implement a solution that works for all components.
Current Behavior
Currently we don't have any way to support messages with translation for
PageLoadingTable
. Since it is using Table component under the hood to render the Table and Table component supportsnoRowsMsg
prop to display message so in PageLoadingTable component I introducednoRowsMsg
prop for Table component to render messages in PageLoadingTable.Expected Behavior
PageLoadingTable component should display provided message and its translation in EN and DE.
Steps To Reproduce
Technical User Management is one of Page which is using
PageLoadingTable
component .The text was updated successfully, but these errors were encountered: