mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Fix console warnings (#344)
This commit is contained in:
parent
cc2983600e
commit
b0310091b2
3 changed files with 3 additions and 3 deletions
|
|
@ -62,7 +62,7 @@ export const Folders = function Folders({
|
|||
>
|
||||
All applications
|
||||
<small className="text-muted ms-auto">
|
||||
<span class="badge bg-azure-lt" data-testId="allApplicationsCount">{totalCount}</span>
|
||||
<span class="badge bg-azure-lt" data-testid="allApplicationsCount">{totalCount}</span>
|
||||
</small>
|
||||
</a>
|
||||
{folders.map((folder) =>
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ class HomePage extends React.Component {
|
|||
|
||||
<div className={currentFolder.count == 0 ? 'table-responsive bg-white w-100 apps-table mt-3 d-flex align-items-center' : 'table-responsive bg-white w-100 apps-table mt-3'} style={{minHeight: '600px'}}>
|
||||
<table
|
||||
data-testId="appsTable"
|
||||
data-testid="appsTable"
|
||||
class="table table-vcenter">
|
||||
<tbody>
|
||||
{isLoading && (
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ export const Header = function Header({
|
|||
className="nav-link d-flex lh-1 text-reset p-0"
|
||||
data-bs-toggle="dropdown"
|
||||
aria-label="Open user menu"
|
||||
data-testId="userAvatarHeader"
|
||||
data-testid="userAvatarHeader"
|
||||
>
|
||||
<div className="d-none d-xl-block ps-2">
|
||||
<span class="avatar bg-azure-lt">
|
||||
|
|
|
|||
Loading…
Reference in a new issue