mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 01:18:23 +00:00
ui bugs
This commit is contained in:
parent
343383beda
commit
582ed85389
2 changed files with 8 additions and 2 deletions
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue