Web: Client: Files: Added fixedDirection property for AccessComboBox

This commit is contained in:
Ilya Oleshko 2022-02-25 17:45:20 +03:00
parent 496b55c5a6
commit 04737a6c6d
2 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,7 @@ const AccessComboBox = (props) => {
t,
arrowIconColor,
disableLink,
fixedDirection,
} = props;
const {
FullAccess,
@ -119,6 +120,7 @@ const AccessComboBox = (props) => {
disableIconClick={false}
isDisabled={isDisabled}
isDefaultMode={false}
fixedDirection={fixedDirection}
>
<ReactSVG src={accessIconUrl} className="sharing-access-combo-box-icon" />
</ComboBox>

View File

@ -220,6 +220,7 @@ class SharingRow extends React.Component {
itemId={id}
accessOptions={accessOptions}
isDisabled={isLoading}
fixedDirection={true}
/>
)
}