-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
fix(core): link to sync generators page during sync prompt, and provide more info on docs page for disabling and applyChanges #28001
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -110,7 +111,7 @@ export function ProjectDetails({ | |||
)} | |||
<div | |||
id="project-details-container" | |||
className="not-prose overflow-y-auto" | |||
className={twMerge('not-prose', height && 'overflow-y-auto')} |
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.
There was a scrollbar being rendered for me. We don't need to add overflow unless the height property is set.
@@ -488,7 +488,7 @@ async function promptForApplyingSyncGeneratorChanges(): Promise<boolean> { | |||
name: 'applyChanges', | |||
type: 'select', | |||
message: | |||
'Would you like to sync the identified changes to get your worskpace up to date?', | |||
'Would you like to sync the identified changes to get your workspace up to date?', |
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.
Typo
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 05b1335. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 4 targets
Sent with 💌 from NxCloud. |
10ea3e9
to
546974d
Compare
…ide more info on docs page for disabling and applyChanges
546974d
to
05b1335
Compare
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
This PR expands the concept page for sync generators to show config examples for
applyChanges
anddisableTaskSyncGenerators
. It also adds a link when during the sync prompt for users to read more about it.Preview: https://nx-dev-git-feat-sync-docs-and-links-nrwl.vercel.app/concepts/sync-generators
Current Behavior
Expected Behavior
Related Issue(s)
Fixes #