Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tf-build
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benedikt Wildenhain
tf-build
Commits
535e039f
Commit
535e039f
authored
May 1, 2023
by
Austin Anderson
Browse files
Options
Downloads
Patches
Plain Diff
Forgive copy-pasting CLs
parent
e761671d
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
tf_oss_dashboard/help.md
+2
-1
2 additions, 1 deletion
tf_oss_dashboard/help.md
tf_oss_dashboard/script.js
+1
-1
1 addition, 1 deletion
tf_oss_dashboard/script.js
with
3 additions
and
2 deletions
tf_oss_dashboard/help.md
+
2
−
1
View file @
535e039f
...
...
@@ -20,7 +20,8 @@ Here are some tips and notes about the dashboard:
-
You can copy the URL while a commit modal is open to share that commit.
-
Add
`#<commit-id>`
to the dashboard URL to find a specific commit.
-
Add
`#<cl-number>`
to the dashboard URL to find a specific CL (this is one
easy way to check if your CL has landed on GitHub, on Nightlies, etc).
easy way to check if your CL has landed on GitHub, on Nightlies, etc). You
can include the "cl/" too if you're copy-pasting.
-
Add
`#<pr-number>`
to the dashboard URL to find a specific merged PR.
-
This page refreshes roughly every 5 minutes to check for updates.
-
The last dot you clicked on is outlined in black. It goes away after refresh.
...
...
This diff is collapsed.
Click to expand it.
tf_oss_dashboard/script.js
+
1
−
1
View file @
535e039f
...
...
@@ -118,7 +118,7 @@ $(function () {
// And if it's neither, it's a CL, so try and find a modal
// matching that CL number
}
else
{
const
cl
=
window
.
location
.
hash
.
substring
(
1
)
const
cl
=
window
.
location
.
hash
.
substring
(
1
)
.
replace
(
"
cl/
"
,
""
)
const
modal_id
=
'
#
'
+
$
(
`.modal[data-cl=
${
cl
}
]`
).
attr
(
'
id
'
)
new
bootstrap
.
Modal
(
modal_id
).
show
()
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment