diff --git a/services/web/frontend/js/features/file-tree/components/file-tree-item/file-tree-item-menu.js b/services/web/frontend/js/features/file-tree/components/file-tree-item/file-tree-item-menu.js index 30427645fc..106e55ef61 100644 --- a/services/web/frontend/js/features/file-tree/components/file-tree-item/file-tree-item-menu.js +++ b/services/web/frontend/js/features/file-tree/components/file-tree-item/file-tree-item-menu.js @@ -42,6 +42,7 @@ function FileTreeItemMenu({ id }) { id={`menu-button-${id}`} onClick={withoutPropagation(handleClick)} ref={menuButtonRef} + bsStyle={null} > diff --git a/services/web/frontend/js/features/file-tree/components/file-tree-toolbar.js b/services/web/frontend/js/features/file-tree/components/file-tree-toolbar.js index 5de59f3930..d8f9303784 100644 --- a/services/web/frontend/js/features/file-tree/components/file-tree-toolbar.js +++ b/services/web/frontend/js/features/file-tree/components/file-tree-toolbar.js @@ -43,7 +43,7 @@ function FileTreeToolbarLeft() { description={t('new_file')} overlayProps={{ placement: 'bottom' }} > - @@ -52,7 +52,7 @@ function FileTreeToolbarLeft() { description={t('new_folder')} overlayProps={{ placement: 'bottom' }} > - diff --git a/services/web/frontend/js/features/file-tree/components/modals/file-tree-modal-error.js b/services/web/frontend/js/features/file-tree/components/modals/file-tree-modal-error.js index 86954c53ae..a9af162786 100644 --- a/services/web/frontend/js/features/file-tree/components/modals/file-tree-modal-error.js +++ b/services/web/frontend/js/features/file-tree/components/modals/file-tree-modal-error.js @@ -70,7 +70,9 @@ function FileTreeModalError() { - + ) diff --git a/services/web/frontend/js/features/project-list/components/modals/edit-tag-modal.tsx b/services/web/frontend/js/features/project-list/components/modals/edit-tag-modal.tsx index 957f870214..83dab78d98 100644 --- a/services/web/frontend/js/features/project-list/components/modals/edit-tag-modal.tsx +++ b/services/web/frontend/js/features/project-list/components/modals/edit-tag-modal.tsx @@ -111,6 +111,8 @@ export default function EditTagModal({ diff --git a/services/web/frontend/js/features/project-list/components/new-project-button/upload-project-modal.tsx b/services/web/frontend/js/features/project-list/components/new-project-button/upload-project-modal.tsx index 236218ed93..12ce596fdb 100644 --- a/services/web/frontend/js/features/project-list/components/new-project-button/upload-project-modal.tsx +++ b/services/web/frontend/js/features/project-list/components/new-project-button/upload-project-modal.tsx @@ -110,7 +110,9 @@ function UploadProjectModal({ onHide }: UploadProjectModalProps) { - + ) diff --git a/services/web/frontend/js/features/project-list/components/sidebar/sidebar-filters.tsx b/services/web/frontend/js/features/project-list/components/sidebar/sidebar-filters.tsx index 3338075b83..8dc982f0ce 100644 --- a/services/web/frontend/js/features/project-list/components/sidebar/sidebar-filters.tsx +++ b/services/web/frontend/js/features/project-list/components/sidebar/sidebar-filters.tsx @@ -19,7 +19,9 @@ export function SidebarFilter({ filter, text }: SidebarFilterProps) { {isActive => (
  • - +
  • )}
    diff --git a/services/web/frontend/js/features/project-list/components/sidebar/tags-list.tsx b/services/web/frontend/js/features/project-list/components/sidebar/tags-list.tsx index 8cf9e18326..863f1fdb65 100644 --- a/services/web/frontend/js/features/project-list/components/sidebar/tags-list.tsx +++ b/services/web/frontend/js/features/project-list/components/sidebar/tags-list.tsx @@ -34,7 +34,11 @@ export default function TagsList() {

    {t('tags_slash_folders')}

  • - @@ -50,6 +54,7 @@ export default function TagsList() { onClick={e => handleSelectTag(e as unknown as React.MouseEvent, tag._id) } + bsStyle={null} > selectTag(UNCATEGORIZED_KEY)} + bsStyle={null} > {t('uncategorized')} ({untaggedProjectsCount}) diff --git a/services/web/frontend/js/features/project-list/components/tags-list.tsx b/services/web/frontend/js/features/project-list/components/tags-list.tsx index 155bd171e1..be0e592f94 100644 --- a/services/web/frontend/js/features/project-list/components/tags-list.tsx +++ b/services/web/frontend/js/features/project-list/components/tags-list.tsx @@ -49,6 +49,7 @@ function TagsList({ onTagClick, onEditClick }: TagsListProps) { onEditClick() }} className="btn-transparent edit-btn me-2" + bsStyle={null} > diff --git a/services/web/frontend/js/features/settings/components/emails/add-email/add-another-email-btn.tsx b/services/web/frontend/js/features/settings/components/emails/add-email/add-another-email-btn.tsx index 502bb34b14..d89a951001 100644 --- a/services/web/frontend/js/features/settings/components/emails/add-email/add-another-email-btn.tsx +++ b/services/web/frontend/js/features/settings/components/emails/add-email/add-another-email-btn.tsx @@ -5,7 +5,12 @@ function AddAnotherEmailBtn({ onClick, ...props }: ButtonProps) { const { t } = useTranslation() return ( - ) diff --git a/services/web/frontend/js/features/settings/components/emails/add-email/email-affiliated-with-institution.tsx b/services/web/frontend/js/features/settings/components/emails/add-email/email-affiliated-with-institution.tsx index b0c04c38f9..ea0db53dff 100644 --- a/services/web/frontend/js/features/settings/components/emails/add-email/email-affiliated-with-institution.tsx +++ b/services/web/frontend/js/features/settings/components/emails/add-email/email-affiliated-with-institution.tsx @@ -7,7 +7,12 @@ function EmailAffiliatedWithInstitution({ onClick, ...props }: ButtonProps) { return (
    {t('is_email_affiliated')} -
    diff --git a/services/web/frontend/js/features/settings/components/emails/add-email/university-name.tsx b/services/web/frontend/js/features/settings/components/emails/add-email/university-name.tsx index 2229edd7ff..10d877e3eb 100644 --- a/services/web/frontend/js/features/settings/components/emails/add-email/university-name.tsx +++ b/services/web/frontend/js/features/settings/components/emails/add-email/university-name.tsx @@ -14,7 +14,7 @@ function UniversityName({ name, onClick }: UniversityNameProps) { {name} {' '} - diff --git a/services/web/frontend/js/features/settings/components/emails/resend-confirmation-email-button.tsx b/services/web/frontend/js/features/settings/components/emails/resend-confirmation-email-button.tsx index 132189aee5..cb35cc20c6 100644 --- a/services/web/frontend/js/features/settings/components/emails/resend-confirmation-email-button.tsx +++ b/services/web/frontend/js/features/settings/components/emails/resend-confirmation-email-button.tsx @@ -48,6 +48,7 @@ function ResendConfirmationEmailButton({ className="btn-inline-link" disabled={state.isLoading} onClick={handleResendConfirmationEmail} + bsStyle={null} > {t('resend_confirmation_email')} diff --git a/services/web/frontend/js/features/source-editor/components/cm6-switch-away-survey.tsx b/services/web/frontend/js/features/source-editor/components/cm6-switch-away-survey.tsx index 170035f308..b058180740 100644 --- a/services/web/frontend/js/features/source-editor/components/cm6-switch-away-survey.tsx +++ b/services/web/frontend/js/features/source-editor/components/cm6-switch-away-survey.tsx @@ -79,6 +79,7 @@ export default function CM6SwitchAwaySurvey() { data-dismiss="alert" aria-label="Close" onClick={handleClose} + bsStyle={null} > diff --git a/services/web/frontend/js/features/source-editor/components/grammarly-warning.tsx b/services/web/frontend/js/features/source-editor/components/grammarly-warning.tsx index b529edc356..cd837aa513 100644 --- a/services/web/frontend/js/features/source-editor/components/grammarly-warning.tsx +++ b/services/web/frontend/js/features/source-editor/components/grammarly-warning.tsx @@ -65,6 +65,7 @@ export default function GrammarlyWarning({ delay }: GrammarlyWarningProps) { data-dismiss="alert" aria-label="Close" onClick={handleClose} + bsStyle={null} >