mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
Merge pull request #6229 from ToolJet/bugfix/db-label
Fix :: change database labels in ui sidebar and header
This commit is contained in:
commit
c1c85db326
2 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ function Header() {
|
|||
case 'workspaceId':
|
||||
return 'Applications';
|
||||
case 'database':
|
||||
return 'Tables';
|
||||
return 'Database';
|
||||
case 'workspace-settings':
|
||||
return 'Workspace settings';
|
||||
case 'global-datasources':
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ function Layout({ children, switchDarkMode, darkMode }) {
|
|||
</li>
|
||||
{window.public_config?.ENABLE_TOOLJET_DB == 'true' && admin && (
|
||||
<li className="text-center cursor-pointer" data-cy={`database-icon`}>
|
||||
<ToolTip message="Tables" placement="right">
|
||||
<ToolTip message="Database" placement="right">
|
||||
<Link
|
||||
to={getPrivateRoute('database')}
|
||||
className={`tj-leftsidebar-icon-items ${
|
||||
|
|
|
|||
Loading…
Reference in a new issue