Skip to content

Commit 1e26c1d

Browse files
committed
fix(frontend): windows pixel issue
1 parent 8feb2ef commit 1e26c1d

File tree

1 file changed

+2
-1
lines changed
  • apps/frontend/src/pages/tasks.[id].samples.[id]

1 file changed

+2
-1
lines changed

apps/frontend/src/pages/tasks.[id].samples.[id]/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,8 @@ const AnnotationPage = () => {
307307
toolbarRight={topActionContent}
308308
ref={imageAnnotationRef}
309309
onError={onError}
310-
offsetTop={configFromParent ? 100 : 156}
310+
// windows platform pixel issue
311+
offsetTop={configFromParent ? 100 : 158}
311312
editingSample={editingSample}
312313
config={config}
313314
disabled={disabled}

0 commit comments

Comments
 (0)