Skip to content

Commit

Permalink
Merge pull request #1956 from cvisionai/rc/1.3.21
Browse files Browse the repository at this point in the history
rc 1.3.21 hotfix
  • Loading branch information
bctcvai authored Jan 14, 2025
2 parents 319b0ae + 26a15d2 commit dba46d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/packages/tator-js
2 changes: 1 addition & 1 deletion ui/src/js/annotation/annotation-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -1340,7 +1340,7 @@ export class AnnotationPage extends TatorPage {
// select track takes care of frame jump
canvas.selectTrack(
evt.detail.data,
undefined,
evt.detail.data.frame,
!evt.detail.goToEntityFrame
);
} else if ("frame" in evt.detail.data) {
Expand Down
5 changes: 4 additions & 1 deletion ui/src/js/project-detail/project-detail.js
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,10 @@ export class ProjectDetail extends TatorPage {

// Load page applet navigation elements
for (const applet of applets) {
if (applet.categories && applet.categories.includes("project-page")) {
if (
applet.categories &&
applet.categories.includes("project-page")
) {
let button = document.createElement("page-applet-item");
button.init(applet);
this._pageAppletButtons.push(button);
Expand Down

0 comments on commit dba46d7

Please sign in to comment.