Commit 0de02f82 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch 'operations-dashboard-silver' into 'master'

Fix wrong tier error message for Operations dashboard

See merge request gitlab-org/gitlab-ee!16319
parents ea10f664 b7a7f593
...@@ -73,7 +73,7 @@ export const receiveAddProjectsToDashboardSuccess = ({ dispatch, state }, data) ...@@ -73,7 +73,7 @@ export const receiveAddProjectsToDashboardSuccess = ({ dispatch, state }, data)
createFlash( createFlash(
sprintf( sprintf(
s__( s__(
'Dashboard|Unable to add %{invalidProjects}. This dashboard is available for public projects, and private projects in groups with a Gold plan.', 'Dashboard|Unable to add %{invalidProjects}. This dashboard is available for public projects, and private projects in groups with a Silver plan.',
), ),
{ {
invalidProjects, invalidProjects,
......
---
title: Fix wrong tier error message for Operations dashboard
merge_request: 16319
author:
type: fixed
...@@ -120,7 +120,7 @@ describe('actions', () => { ...@@ -120,7 +120,7 @@ describe('actions', () => {
}); });
const errorMessage = const errorMessage =
'This dashboard is available for public projects, and private projects in groups with a Gold plan.'; 'This dashboard is available for public projects, and private projects in groups with a Silver plan.';
const selectProjects = count => { const selectProjects = count => {
for (let i = 0; i < count; i += 1) { for (let i = 0; i < count; i += 1) {
store.dispatch('toggleSelectedProject', { store.dispatch('toggleSelectedProject', {
......
...@@ -4587,7 +4587,7 @@ msgstr "" ...@@ -4587,7 +4587,7 @@ msgstr ""
msgid "Dashboard|%{firstProject}, %{rest}, and %{secondProject}" msgid "Dashboard|%{firstProject}, %{rest}, and %{secondProject}"
msgstr "" msgstr ""
msgid "Dashboard|Unable to add %{invalidProjects}. This dashboard is available for public projects, and private projects in groups with a Gold plan." msgid "Dashboard|Unable to add %{invalidProjects}. This dashboard is available for public projects, and private projects in groups with a Silver plan."
msgstr "" msgstr ""
msgid "Data is still calculating..." msgid "Data is still calculating..."
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment