mirror of
https://github.com/apache/superset.git
synced 2026-05-12 19:35:17 +00:00
fix(theming): Fix visual regressions from theming P7 (#34237)
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
*/
|
||||
import { t } from '@superset-ui/core';
|
||||
import { useToasts } from 'src/components/MessageToasts/withToasts';
|
||||
import { ModalTitleWithIcon } from 'src/components/ModalTitleWithIcon';
|
||||
import { Actions } from 'src/constants';
|
||||
import { GroupObject } from 'src/pages/GroupsList';
|
||||
import {
|
||||
@@ -101,7 +102,13 @@ function GroupListModal({
|
||||
<FormModal
|
||||
show={show}
|
||||
onHide={onHide}
|
||||
title={isEditMode ? t('Edit Group') : t('Add Group')}
|
||||
name={isEditMode ? 'Edit Group' : 'Add Group'}
|
||||
title={
|
||||
<ModalTitleWithIcon
|
||||
isEditMode={isEditMode}
|
||||
title={isEditMode ? t('Edit Group') : t('Add Group')}
|
||||
/>
|
||||
}
|
||||
onSave={onSave}
|
||||
formSubmitHandler={handleFormSubmit}
|
||||
requiredFields={requiredFields}
|
||||
|
||||
Reference in New Issue
Block a user