From 0e58003d4ac88a33be4c8ee81538edacf81a92c8 Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Tue, 3 Sep 2024 11:05:32 +0200 Subject: [PATCH] components/Highlight: new bootc-only tabs list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Florian Schüller --- src/components/Highlight.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/Highlight.js b/src/components/Highlight.js index 6a1fd793c..ca216d8d5 100644 --- a/src/components/Highlight.js +++ b/src/components/Highlight.js @@ -19,6 +19,12 @@ export const tabValuesHostedOnly = [ { label: '⚪ bootc', value: 'bootc', attributes: { className: 'highlight tab disabled' } }, ]; +export const tabValuesBootcOnly = [ + { label: '⚪ on premises', value: 'on-premises', attributes: { className: 'highlight tab disabled' } }, + { label: '⚪ hosted', value: 'hosted', attributes: { className: 'highlight tab disabled' } }, + { label: '🟣 bootc', value: 'bootc', attributes: { className: 'highlight tab bootc' } }, +]; + export const tabValuesWithBootc = [ { label: '🔵 on premises', value: 'on-premises', attributes: { className: 'highlight tab on-premises' } }, { label: '🟤 hosted', value: 'hosted', attributes: { className: 'highlight tab hosted' } },