Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync develop & master #14253

Merged
merged 2 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ const SearchBar: React.FC<SearchbarProps> = ({
event: OsdsSearchBarCustomEvent<OdsInputValueChangeEventDetail>,
) => {
setLocalSearchValue(event.detail.value);
setSearchValue(event.detail.value);
};

const onDeleteCategory = (category: string) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,14 +380,12 @@ export default function DedicatedSidebar() {
id: 'identity-security-operations',
label: t('sidebar_identity_security_operations'),
icon: <OsdsIcon name={ODS_ICON_NAME.CLOUD_EYE_CONCEPT} size={ODS_ICON_SIZE.xxs} color={ODS_THEME_COLOR_INTENT.text}/>,
badge: 'new',
pathMatcher: new RegExp('^/key-management-service'),
subItems: [
{
id: 'key-management-service',
label: t('sidebar_key-management-service'),
href: navigation.getURL('key-management-service', '/'),
badge: 'beta',
pathMatcher: new RegExp('^/key-management-service'),
icon: keyIcon,
async loader() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,14 +335,12 @@ export default function HostedPrivateCloudSidebar() {
id: 'identity-security-operations',
label: t('sidebar_identity_security_operations'),
icon: <OsdsIcon name={ODS_ICON_NAME.CLOUD_EYE_CONCEPT} size={ODS_ICON_SIZE.xxs} color={ODS_THEME_COLOR_INTENT.text}/>,
badge: 'new',
pathMatcher: new RegExp('^/key-management-service'),
subItems: [
{
id: 'key-management-service',
label: t('sidebar_key-management-service'),
href: navigation.getURL('key-management-service', '/'),
badge: 'beta',
pathMatcher: new RegExp('^/key-management-service'),
icon: keyIcon,
async loader() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,13 +420,11 @@ export function getPciProjectMenu(
pciMenu.push({
id: 'identity-security',
title: 'Identity, Security & Operations',
badge: 'new',
subItems: [
{
id: 'key-management-service',
title: 'Key Management Service',
href: getURL('key-management-service', `/`),
badge: 'beta'
},
],
},
Expand Down
Loading