mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-02 03:54:59 +08:00
fix (iphone): weird selection when trying to upload something
This commit is contained in:
@ -308,9 +308,6 @@ export class FilesPageComponent extends React.Component {
|
|||||||
<MobileFileUpload path={this.state.path} accessRight={this.state.metadata || {}} />
|
<MobileFileUpload path={this.state.path} accessRight={this.state.metadata || {}} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="upload-footer">
|
|
||||||
<div className="bar"></div>
|
|
||||||
</div>
|
|
||||||
</SelectableGroup>
|
</SelectableGroup>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@ -44,7 +44,7 @@ function MobileFileUploadComponent({ emit, path, accessRight }) {
|
|||||||
<ReactCSSTransitionGroup
|
<ReactCSSTransitionGroup
|
||||||
transitionName="mobilefileupload" transitionLeave={false} transitionEnter={false}
|
transitionName="mobilefileupload" transitionLeave={false} transitionEnter={false}
|
||||||
transitionAppear={true} transitionAppearTimeout={550}>
|
transitionAppear={true} transitionAppearTimeout={550}>
|
||||||
<div className="component_mobilefileupload">
|
<div className="component_mobilefileupload no-select">
|
||||||
<form>
|
<form>
|
||||||
<input onChange={onUpload} type="file" name="file" id="mobilefileupload" multiple/>
|
<input onChange={onUpload} type="file" name="file" id="mobilefileupload" multiple/>
|
||||||
<label htmlFor="mobilefileupload">
|
<label htmlFor="mobilefileupload">
|
||||||
|
|||||||
Reference in New Issue
Block a user