-
Notifications
You must be signed in to change notification settings - Fork 0
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
base: cmwilson21-patch-1
Are you sure you want to change the base?
Conversation
…ing-for-your-repositories.md
* Fix missing `GITHUB_TOKEN` to get permission for adding label
…ating-dependabot-with-github-actions.md
…ating-dependabot-with-github-actions.md
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: Sam Browning <[email protected]>
Co-authored-by: rachmari <[email protected]>
Co-authored-by: Felicity Chapman <[email protected]> Co-authored-by: Matt Pollard <[email protected]> Co-authored-by: Sam Browning <[email protected]>
Co-authored-by: hubwriter <[email protected]>
) Co-authored-by: Peter Bengtsson <[email protected]> Co-authored-by: Laura Coursen <[email protected]>
…for your enterprise" (github#34551)
Co-authored-by: Isaac Brown <[email protected]>
Co-authored-by: github-actions <[email protected]> Co-authored-by: Siara <[email protected]>
Co-authored-by: github-actions <[email protected]> Co-authored-by: Ben Ahmady <[email protected]>
Co-authored-by: rachmari <[email protected]>
Co-authored-by: Anne-Marie <[email protected]>
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]>
|
There was a problem hiding this 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"> |
There was a problem hiding this comment.
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%;
}
There was a problem hiding this comment.
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;
There was a problem hiding this comment.
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;
There was a problem hiding this comment.
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">
- Home
- Category
- Current Page
);
}
export default Breadcrumbs;
Why:
Closes:
What's being changed (if available, include any code snippets, screenshots, or gifs):
Check off the following: