Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
38b004a
add dqc
yubonluo Aug 23, 2024
f19871f
solve the code conflict
yubonluo Aug 23, 2024
689e0f6
add dircet query connections on the detail page
yubonluo Aug 26, 2024
13d5ba8
Changeset file for PR #7839 created/updated
opensearch-changeset-bot[bot] Aug 26, 2024
c8141e3
delete useless code
yubonluo Aug 26, 2024
51441e4
Merge branch '2.17/support-DQC' of github.com:yubonluo/OpenSearch-Das…
yubonluo Aug 26, 2024
0e6ad2f
optimize the code
yubonluo Aug 26, 2024
0ef40b6
optimize the code
yubonluo Aug 26, 2024
810651c
Refactor association modal
Kapian1234 Aug 27, 2024
2409005
Integrate modal with workspace detail page
wanglam Aug 27, 2024
4f6d8d9
Fix parent data source unchecked
wanglam Aug 27, 2024
20db731
Merge pull request #1 from Kapian1234/associate_datasource_modal
yubonluo Aug 27, 2024
49377ce
Merge pull request #2 from wanglam/fix-dqc-selection
yubonluo Aug 28, 2024
f1a54af
Remove all tab and sort connections by name alphabetical
wanglam Aug 28, 2024
724170e
Merge pull request #3 from wanglam/feat-remove-all-data-source-modal
yubonluo Aug 28, 2024
2a252b9
optimzie
yubonluo Aug 28, 2024
28a62aa
Fix checked status disappear after modal tab change
wanglam Aug 28, 2024
fe9635e
Merge pull request #5 from wanglam/fix-check-status-disappear-after-m…
yubonluo Aug 28, 2024
ef78bf2
optimize the dqc table
yubonluo Aug 28, 2024
6bd0b12
Merge branch '2.17/support-DQC' of github.com:yubonluo/OpenSearch-Das…
yubonluo Aug 28, 2024
1519652
resolve the code conflict
yubonluo Aug 28, 2024
99de2f4
optimize the code
yubonluo Aug 28, 2024
679d689
update the table css
yubonluo Aug 29, 2024
97a5c9f
Simplify options update logic
wanglam Aug 29, 2024
c32b960
Add unit tests for AssociationDataSourceModal
wanglam Aug 29, 2024
9fee0d2
Merge pull request #6 from wanglam/refactor-modal-options-update-logic
yubonluo Aug 29, 2024
c4dc217
Merge branch 'main' into 2.17/support-DQC
ruanyl Aug 30, 2024
f6d240d
add unit test
yubonluo Aug 30, 2024
651f43d
resolve code conflict
yubonluo Aug 30, 2024
5a1e5a5
optimize the code
yubonluo Aug 30, 2024
b29e3f7
Add nested support in associate data source modal
wanglam Aug 30, 2024
c160ba2
delete useless code
yubonluo Aug 30, 2024
49517b8
Change back type
wanglam Aug 30, 2024
284a54a
Update type in modal UT
wanglam Aug 30, 2024
5b99112
Merge pull request #7 from wanglam/feat-support-nested-in-dqc-tab
yubonluo Aug 30, 2024
a261a25
optimize the code
yubonluo Aug 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
optimize the code
Signed-off-by: yubonluo <yubonluo@amazon.com>
  • Loading branch information
yubonluo committed Aug 30, 2024
commit a261a25df33c9a68ca953b4aac8ea0f8f11c09e1
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export const DataSourceConnectionTable = ({
</EuiPopoverTitle>
<EuiListGroup
flush
maxWidth={200}
maxWidth={217}
className="eui-yScrollWithShadows"
style={{ maxHeight: '90px' }}
>
Expand All @@ -232,7 +232,7 @@ export const DataSourceConnectionTable = ({
key={item.id}
size="xs"
label={item.name}
icon={<DirectQueryConnectionIcon type={record.type} />}
icon={<DirectQueryConnectionIcon type={item.type} />}
style={{ maxHeight: '30px' }}
/>
))}
Expand Down