Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-16 00:09:06 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-16 00:09:06 +0300
commit6505e8ec12b203dc380186e7eb6916397caca1f4 (patch)
tree9b250172f693c5ff4a641849538c92d1c13d9d0a /app/assets/javascripts/clusters
parentc54e7283c976bf7f4394e3270a28e34655275275 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/clusters')
-rw-r--r--app/assets/javascripts/clusters/agents/constants.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/javascripts/clusters/agents/constants.js b/app/assets/javascripts/clusters/agents/constants.js
index 76af552181f..e97d6500260 100644
--- a/app/assets/javascripts/clusters/agents/constants.js
+++ b/app/assets/javascripts/clusters/agents/constants.js
@@ -22,7 +22,7 @@ export const EVENT_DETAILS = {
body: s__('ClusterAgents|Agent %{strongStart}connected%{strongEnd}'),
titleIcon: {
name: 'status-success',
- class: 'text-success-500',
+ class: 'gl-text-green-500',
},
},
agent_disconnected: {
@@ -31,7 +31,7 @@ export const EVENT_DETAILS = {
body: s__('ClusterAgents|Agent %{strongStart}disconnected%{strongEnd}'),
titleIcon: {
name: 'severity-critical',
- class: 'text-danger-800',
+ class: 'gl-text-red-800',
},
},
};
@@ -50,12 +50,12 @@ export const REVOKE_TOKEN_MODAL_ID = 'revoke-token-%{tokenName}';
export const INTEGRATION_STATUS_VALID_TOKEN = {
icon: 'status-success',
- iconClass: 'text-success-500',
+ iconClass: 'gl-text-green-500',
text: s__('ClusterAgents|Valid access token'),
};
export const INTEGRATION_STATUS_NO_TOKEN = {
icon: 'status-alert',
- iconClass: 'text-danger-500',
+ iconClass: 'gl-text-red-500',
text: s__('ClusterAgents|No agent access token'),
};