diff options
author | David Cho-Lerat <117642976+david-cho-lerat-sonarsource@users.noreply.github.com> | 2024-10-22 15:19:18 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-10-22 20:03:10 +0000 |
commit | d9f6920331a0f274f1d6227c2af74d6dbfe84aa2 (patch) | |
tree | 3228b99c665c03e6c1bf2a1f68d9d90865f8558b /server/sonar-web/src/main/js/apps/system/components/ChangeLogLevelForm.tsx | |
parent | c33a6b9956802dfa00133e304326887b901af901 (diff) | |
download | sonarqube-d9f6920331a0f274f1d6227c2af74d6dbfe84aa2.tar.gz sonarqube-d9f6920331a0f274f1d6227c2af74d6dbfe84aa2.zip |
SONAR-23206 Remove design-system build to have it as normal code inside sonar-web (#12088)
Co-authored-by: Grégoire Aubert <gregoire.aubert@sonarsource.com>
Co-authored-by: Jeremy Davis <jeremy.davis@sonarsource.com>
Diffstat (limited to 'server/sonar-web/src/main/js/apps/system/components/ChangeLogLevelForm.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/system/components/ChangeLogLevelForm.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/system/components/ChangeLogLevelForm.tsx b/server/sonar-web/src/main/js/apps/system/components/ChangeLogLevelForm.tsx index ba99739c585..d03cfa4d816 100644 --- a/server/sonar-web/src/main/js/apps/system/components/ChangeLogLevelForm.tsx +++ b/server/sonar-web/src/main/js/apps/system/components/ChangeLogLevelForm.tsx @@ -17,9 +17,10 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + import { Button, ButtonVariety, RadioButtonGroup } from '@sonarsource/echoes-react'; -import { FlagMessage, Modal } from 'design-system'; import * as React from 'react'; +import { FlagMessage, Modal } from '~design-system'; import { setLogLevel } from '../../../api/system'; import { translate } from '../../../helpers/l10n'; import { LOGS_LEVELS } from '../utils'; |