Skip to content

Commit

Permalink
fix(lb-components): Remove frame field
Browse files Browse the repository at this point in the history
  • Loading branch information
lihqi committed Feb 19, 2024
1 parent f0914a4 commit d5dcca1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,6 @@ const FindTrackIDIndex = (props: IProps) => {
}}
/>
<div>
{currentIndex > -1 && (
<span
style={{
marginRight: 4,
}}
>
{t('Frame')}: {currentIndex + 1}
</span>
)}
<ArrowComponent disabled={currentIndex <= 0} onClick={onPrev} type={'left'} />
<ArrowComponent
disabled={currentIndex === -1 || currentIndex === list.length - 1}
Expand Down
4 changes: 1 addition & 3 deletions packages/lb-utils/src/i18n/resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,6 @@
"OnlyCurrentFrame": "Only current frame",
"ClickOnTheIdToHighlightTheMarkupBox": "Click on the ID to highlight the markup box",
"DoubleClickOnTheIdToContinuouslyHighlightBoxesAcrossFrames": "Double-click on the ID to continuously highlight boxes across frames",
"Frame": "Frame",
"FindTheFrameCorrespondingToTheLabeledFrameId": "Find the frame corresponding to the labeled frame ID"
},
"cn": {
Expand Down Expand Up @@ -708,11 +707,10 @@
"Statistics": "统计",
"Sequence": "数列",
"Physics": "物理",
"IndicatorJudgment":"指标判断",
"IndicatorJudgment": "指标判断",
"OnlyCurrentFrame": "只看当前帧",
"ClickOnTheIdToHighlightTheMarkupBox": "点击ID可以高亮标注框",
"DoubleClickOnTheIdToContinuouslyHighlightBoxesAcrossFrames": "双击ID可以跨帧连续高亮标注框",
"Frame": "",
"FindTheFrameCorrespondingToTheLabeledFrameId": "查找标注框ID对应帧"
}
}

0 comments on commit d5dcca1

Please sign in to comment.