1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-13 22:01:06 +00:00

fix: search zindex (#6947)

* fix: search zindex

* feat: update ui version

---------

Co-authored-by: 杨国璇 <ygx@Hello-word.local>
This commit is contained in:
杨国璇
2024-10-26 09:27:19 +08:00
committed by GitHub
parent 0a8ba80d42
commit 2f13b4cfa7
18 changed files with 70 additions and 70 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
import { zIndexes } from '../../../constants';
import { metadataZIndexes } from '../../constants';
const propTypes = {
innerWidth: PropTypes.number,
@@ -35,7 +35,7 @@ class HorizontalScrollbar extends React.Component {
};
getContainerStyle = () => {
return { zIndex: zIndexes.SCROLL_BAR };
return { zIndex: metadataZIndexes.SCROLL_BAR };
};
setScrollbarRef = (ref) => {