Merge branch 'release/v1.2' of github.com:ONLYOFFICE/AppServer into release/v1.2

This commit is contained in:
Tatiana Lopaeva 2022-05-31 14:32:02 +03:00
commit db2308128d
7 changed files with 19 additions and 5 deletions

View File

@ -78,7 +78,7 @@ class ToggleButton extends Component {
//console.log("ToggleButton render"); //console.log("ToggleButton render");
return ( return (
<Container {...this.props}> <Container id={id} className={className} style={style}>
<ToggleButtonContainer <ToggleButtonContainer
id={id} id={id}
className={className} className={className}

View File

@ -198,6 +198,8 @@ const EditingWrapperComponent = (props) => {
const [CancelIconIsHovered, setIsHoveredCancel] = useState(false); const [CancelIconIsHovered, setIsHoveredCancel] = useState(false);
const [isLoading, setIsLoading] = useState(false); const [isLoading, setIsLoading] = useState(false);
const inputRef = React.useRef(null);
const onKeyUpUpdateItem = (e) => { const onKeyUpUpdateItem = (e) => {
if (isLoading) return; if (isLoading) return;
@ -228,6 +230,8 @@ const EditingWrapperComponent = (props) => {
) )
return false; return false;
if (!document.hasFocus() && inputRef.current === e.target) return false;
!passwordEntryProcess && onClickUpdateItem(e, false); !passwordEntryProcess && onClickUpdateItem(e, false);
}; };
@ -256,6 +260,7 @@ const EditingWrapperComponent = (props) => {
isDisabled={isLoading} isDisabled={isLoading}
data-itemid={itemId} data-itemid={itemId}
withBorder={!isTable} withBorder={!isTable}
forwardedRef={inputRef}
/> />
)} )}
{!isUpdatingRowItem && ( {!isUpdatingRowItem && (

View File

@ -56,7 +56,7 @@ const SingleItem = (props) => {
<div className="property"> <div className="property">
<Text className="property-title">{t("Home:ByLastModifiedDate")}</Text> <Text className="property-title">{t("Home:ByLastModifiedDate")}</Text>
<Text className="property-content"> <Text className="property-content">
{parseAndFormatDate(selectedItem.updatedAt)} {parseAndFormatDate(selectedItem.attributes.updatedAt)}
</Text> </Text>
</div> </div>
<div className="property"> <div className="property">

View File

@ -69,7 +69,11 @@ const InfoPanelBodyContent = ({
<GalleryEmptyScreen /> <GalleryEmptyScreen />
) : ( ) : (
<StyledInfoRoomBody> <StyledInfoRoomBody>
<GalleryItem selectedItem={gallerySelected} /> <GalleryItem
selectedItem={gallerySelected}
personal={personal}
culture={culture}
/>
</StyledInfoRoomBody> </StyledInfoRoomBody>
) )
) : ( ) : (

View File

@ -62,10 +62,15 @@ const StyledTableRow = styled(TableRow)`
.table-container_file-name-cell { .table-container_file-name-cell {
margin-left: -24px; margin-left: -24px;
padding-left: 24px; padding-left: 24px;
z-index: 1;
} }
.table-container_row-context-menu-wrapper { .table-container_row-context-menu-wrapper {
margin-right: -20px; margin-right: -20px;
padding-right: 18px; padding-right: 18px;
position: relative !important;
z-index: 1;
} }
} }
`} `}

View File

@ -906,7 +906,7 @@ class FilesStore {
"separator2", "separator2",
"delete", "delete",
]); ]);
if (isThirdPartyFolder) { if (isThirdPartyItem) {
fileOptions = this.removeOptions(fileOptions, ["rename"]); fileOptions = this.removeOptions(fileOptions, ["rename"]);
} }
} }

View File

@ -15,7 +15,7 @@
line-height: 80px; line-height: 80px;
font-family: Helvetica Neue, sans-serif; font-family: Helvetica Neue, sans-serif;
background: #f4f4f4; background: #f4f4f4;
z-index: 9998; z-index: 100;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
overflow: hidden; overflow: hidden;
-webkit-text-size-adjust: none; -webkit-text-size-adjust: none;