Skip to content

Commit 48bde00

Browse files
committed
feat(FR-2183): add activate and delete actions for inactive tab
1 parent 4ee9532 commit 48bde00

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

react/src/components/MyKeypairManagementModal.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import {
1919
Tag,
2020
theme,
2121
Tooltip,
22+
Typography,
2223
} from 'antd';
2324
import {
2425
BAIButton,
@@ -620,11 +621,11 @@ const MyKeypairManagementModal: React.FC<MyKeypairManagementModalProps> = ({
620621
open={!!deletingKeypairAccessKey}
621622
title={t('credential.DeleteKeypair')}
622623
content={
623-
<div style={{ marginBottom: token.marginSM }}>
624+
<Typography.Text style={{ marginBottom: token.marginSM }}>
624625
{t('credential.DeleteKeypairWarning', {
625626
accessKey: deletingKeypairAccessKey,
626627
})}
627-
</div>
628+
</Typography.Text>
628629
}
629630
confirmText={t('credential.PermanentlyDelete')}
630631
inputLabel={t('credential.TypePermanentlyDelete', {

src/lib/backend.ai-client-esm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ class Client {
896896
this._features['session-scheduling-history'] = true;
897897
this._features['rbac'] = true;
898898
}
899-
if (this.isManagerVersionCompatibleWith('26.2.0')) {
899+
if (this.isManagerVersionCompatibleWith('26.4.0')) {
900900
this._features['my-keypairs'] = true;
901901
}
902902
}

0 commit comments

Comments
 (0)