This commit is contained in:
Rudra 2024-07-15 13:17:43 +05:30
parent 343383beda
commit 582ed85389
2 changed files with 8 additions and 2 deletions

View file

@ -305,7 +305,13 @@ export const GlobalDataSourcesPage = ({ darkMode = false, updateSelectedDatasour
onClick={() => createDataSource(item)}
data-cy={`${item.title.toLowerCase().replace(/\s+/g, '-')}-add-button`}
>
<SolidIcon name="plus" fill={darkMode ? '#3E63DD' : '#3E63DD'} width={18} viewBox="0 0 25 25" />
<SolidIcon
name="plus"
fill={darkMode ? '#3E63DD' : '#3E63DD'}
width={18}
viewBox="0 0 25 25"
style={{ marginTop: '7px' }}
/>
<span className="ml-2">Add</span>
</ButtonSolid>
);

View file

@ -50,7 +50,7 @@ function ChangeRoleModal({
<ModalBase
title={renderUserChangeTitle(autoRoleChangeMessageType)}
handleConfirm={handleConfirmation}
confirmBtnProps={{ title: 'Continue' }}
confirmBtnProps={{ title: 'Continue', tooltipMessage: false }}
show={showAutoRoleChangeModal}
handleClose={handleAutoRoleChangeModalClose}
darkMode={darkMode}