Skip to content

Commit 65cd3e3

Browse files
committed
fix: tiipy issue in user permission & logs download
1 parent 81e7a80 commit 65cd3e3

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

src/Pages/GlobalConfigurations/Authorization/UserPermissions/List/UserPermissionListHeader.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ const UserPermissionListHeader = ({
5050
</div>
5151
}
5252
>
53-
<HelpOutlineIcon className="mw-20 icon-dim-20 fcn-6 cursor" />
53+
<div className="flex">
54+
<HelpOutlineIcon className="mw-20 icon-dim-20 fcn-6 cursor" />
55+
</div>
5456
</TippyCustomized>
5557
</div>
5658
<div className="flex dc__gap-8">

src/components/app/list-new/ExternalArgoList.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,9 @@ export default function ExternalArgoList({
197197
<div className="app-list__cell app-list__cell--env">
198198
<span className="app-list__cell-header mr-4">{APP_LIST_HEADERS.Environment}</span>
199199
<Tippy className="default-tt" arrow placement="top" content={ENVIRONMENT_HEADER_TIPPY_CONTENT}>
200-
<HelpOutlineIcon className="icon-dim-20" />
200+
<span>
201+
<HelpOutlineIcon className="icon-dim-20" />
202+
</span>
201203
</Tippy>
202204
</div>
203205

src/components/v2/appDetails/k8Resource/nodeDetail/NodeDetailTabs/Logs.component.tsx

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -685,15 +685,17 @@ const LogsComponent = ({
685685
/>
686686
) : (
687687
<Tippy className="default-tt" arrow={false} placement="top" content="Download logs">
688-
<Download
689-
className={`icon-dim-16 mr-8 cursor ${
690-
(podContainerOptions?.containerOptions ?? []).length === 0 ||
691-
(prevContainer && showNoPrevContainer != '')
692-
? 'cursor-not-allowed dc__opacity-0_5'
693-
: ''
694-
}`}
695-
onClick={handleDownloadLogs}
696-
/>
688+
<span>
689+
<Download
690+
className={`icon-dim-16 mr-8 cursor ${
691+
(podContainerOptions?.containerOptions ?? []).length === 0 ||
692+
(prevContainer && showNoPrevContainer != '')
693+
? 'cursor-not-allowed dc__opacity-0_5'
694+
: ''
695+
}`}
696+
onClick={handleDownloadLogs}
697+
/>
698+
</span>
697699
</Tippy>
698700
))}
699701
</div>

0 commit comments

Comments
 (0)