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

format large numbers per locale (#34579) #2

Open
wants to merge 122 commits into
base: cmwilson21-patch-1
Choose a base branch
from

Conversation

Jasonw74
Copy link
Owner

@Jasonw74 Jasonw74 commented Feb 26, 2025

Why:

Closes:

What's being changed (if available, include any code snippets, screenshots, or gifs):

Check off the following:

  • A subject matter expert (SME) has reviewed the technical accuracy of the content in this PR. In most cases, the author can be the SME. Open source contributions may require a SME review from GitHub staff.
  • The changes in this PR meet the docs fundamentals that are required for all content.
  • All CI checks are passing.

felickz and others added 30 commits February 8, 2023 15:20
* Fix missing `GITHUB_TOKEN` to get permission for adding label
Updated inputs context description with missing type `choice` information and provided more precise information about standard properties with the link to workflow dispatch event trigger for reference.
Co-authored-by: Release-Controller <runner@fv-az225-844.nn523fotaqjeti0rucxshd1u2e.jx.internal.cloudapp.net>
Co-authored-by: Matt Pollard <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Peter Bengtsson <[email protected]>
Co-authored-by: Felicity Chapman <[email protected]>
Co-authored-by: Matt Pollard <[email protected]>
Co-authored-by: Sam Browning <[email protected]>
OlayinkaAtobiloye and others added 23 commits February 8, 2023 15:40
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Rachael Sewell <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Laura Coursen <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Rachael Sewell <[email protected]>
@Jasonw74 Jasonw74 self-assigned this Feb 26, 2025
@Jasonw74 Jasonw74 added the enhancement New feature or request label Feb 26, 2025
Repository owner locked and limited conversation to collaborators Feb 26, 2025
Repository owner unlocked this conversation Feb 26, 2025
@Jasonw74 Jasonw74 changed the base branch from main to cmwilson21-patch-1 February 26, 2025 12:37
@Jasonw74
Copy link
Owner Author

Why:

Closes:

What's being changed (if available, include any code snippets, screenshots, or gifs):

Check off the following:

  • A subject matter expert (SME) has reviewed the technical accuracy of the content in this PR. In most cases, the author can be the SME. Open source contributions may require a SME review from GitHub staff.
  • The changes in this PR meet the docs fundamentals that are required for all content.
  • All CI checks are passing.

Copy link
Owner Author

@Jasonw74 Jasonw74 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

approve the comments

@@ -47,7 +47,7 @@ export const ArticlePage = () => {
<ClientSideHighlight />
{router.pathname.includes('/rest/') && <RestRedirect />}
<div className="container-xl px-3 px-md-6 my-4">
<div className={cx('my-3 mr-auto width-full')} data-search="breadcrumbs">
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/* Example CSS Module (or regular CSS) /
.my-3 {
margin-top: 1rem; /
Or your preferred spacing */
margin-bottom: 1rem;
}

.mr-auto {
margin-right: auto;
margin-left: auto;
}

.width-full {
width: 100%;
}

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

import React from 'react';
import cx from 'classnames';
import {Link} from 'react-router-dom'; // example using react router.

function Breadcrumbs() {
return (
<div className={cx('my-3 mr-auto width-full')} data-search="breadcrumbs">
Home / Category / Current Page

);
}

export default Breadcrumbs;

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

import React from 'react';
import cx from 'classnames';
import { Link, useLocation } from 'react-router-dom';

function Breadcrumbs() {
const location = useLocation();
const pathSegments = location.pathname.split('/').filter(segment => segment);
let currentPath = '';

const breadcrumbs = pathSegments.map((segment, index) => {
currentPath += /${segment};
const displayName = segment.charAt(0).toUpperCase() + segment.slice(1);
return (
<React.Fragment key={index}>
{displayName}
{index < pathSegments.length - 1 && ' / '}
</React.Fragment>
);
});

return (
<div className={cx('my-3 mr-auto width-full')} data-search="breadcrumbs">
Home
{breadcrumbs.length > 0 && ' / '}
{breadcrumbs}

);
}

export default Breadcrumbs;

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

import React from 'react';
import cx from 'classnames';
import { Link } from 'react-router-dom';

function Breadcrumbs() {
return (


<div className={cx('my-3 mr-auto width-full')} data-search="breadcrumbs">

  1. Home

  2. Category

  3. Current Page




);
}

export default Breadcrumbs;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.