-
Notifications
You must be signed in to change notification settings - Fork 3.6k
fix/15899 lexical h0 heading bug #15924
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
Closed
ossaidqadri
wants to merge
3
commits into
payloadcms:main
from
ossaidqadri:fix/15899-lexical-h0-heading-bug
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| { | ||
| "permissions": { | ||
| "allow": [ | ||
| "Bash(cd \"D:/work/payload\" && gh auth status 2>&1)", | ||
| "Bash(cd \"D:/work/payload\" && gh issue list --repo payloadcms/payload --limit 100 --state open --json title,labels,number,author 2>&1)", | ||
| "Bash(cd \"D:/work/payload\" && gh issue list --repo payloadcms/payload --limit 200 --state open --json title,labels,number,author,created 2>&1 | python3 -c \"\nimport json, sys\ndata = json.load\\(sys.stdin\\)\n# Filter for easy issues - good first label or likely/simple issues\neasy_issues = []\nfor issue in data:\n labels = [l['name'].lower\\(\\) for l in issue.get\\('labels', []\\)]\n if 'good first issue' in labels or 'label: fix this' in labels or 'plugin: translations' in labels or 'docs' in labels:\n easy_issues.append\\(issue\\)\n # Also include any unlabelled or minimally labeled issues that look simple\n elif len\\(labels\\) <= 1 and issue['title'].lower\\(\\).startswith\\(\\('fix', 'docs', 'minor'\\)\\):\n easy_issues.append\\(issue\\)\n# Sort by creation date \\(oldest first - potentially simpler\\)\neasy_issues.sort\\(key=lambda x: x['created']\\)\nfor issue in easy_issues[:50]:\n print\\(f\\\\\"#{issue['number']}: {issue['title'][:80]}... \\(labels: {', '.join\\([l['name'] for l in issue['labels']]\\)}\\)\\\\\"\\)\n\" 2>/dev/null || echo \"Python3 not available, trying alternative\")" | ||
| ] | ||
| } | ||
| } | ||
Submodule agent-a44ea9c9
added at
62f2b7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| fix(ui): add Cmd/Ctrl+Click and Shift+Click to open items in new tab (#15837) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| fix(ui): add Cmd/Ctrl+Click and Shift+Click to open items in new tab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # Local AI Agent files - DO NOT COMMIT | ||
| AGENTS.local.md | ||
| CLAUDE.local.md | ||
| QWEN.md | ||
| .claude/settings.local.json | ||
| .claude/worktrees/ |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This appears to be a local agent configuration file (it’s also listed in
.gitignore.local) and includes machine-specific paths and permissioned commands. It should not be committed to the repository—please remove it from the PR and rely on local gitignore/excludes for developer-specific agent settings.