mirror of
https://github.com/cloudreve/frontend.git
synced 2025-12-25 19:52:48 +00:00
fix: missing option in filter file by policy / typos
This commit is contained in:
parent
f2e1195873
commit
032ce5ba95
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "cloudreve-frontend",
|
||||
"version": "3.5.0-beta2",
|
||||
"version": "3.5.0-beta.3",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@babel/core": "7.6.0",
|
||||
|
|
|
|||
|
|
@ -88,9 +88,6 @@ export default function FileFilter({ setFilter, setSearch, open, onClose }) {
|
|||
>
|
||||
<MenuItem value={"all"}>全部</MenuItem>
|
||||
{policies.map((v) => {
|
||||
if (v.ID === 3) {
|
||||
return null;
|
||||
}
|
||||
return (
|
||||
<MenuItem key={v.ID} value={v.ID.toString()}>
|
||||
{v.Name}
|
||||
|
|
|
|||
|
|
@ -159,7 +159,7 @@ export default function WebDAV() {
|
|||
<Alert severity="info">
|
||||
WebDAV的地址为:
|
||||
{window.location.origin + "/dav"}
|
||||
;登陆用户名统一为:{user.user_name}{" "}
|
||||
;登录用户名统一为:{user.user_name}{" "}
|
||||
;密码为所创建账号的密码。
|
||||
</Alert>
|
||||
<TableContainer className={classes.tableContainer}>
|
||||
|
|
|
|||
|
|
@ -288,7 +288,7 @@ export default function VideoViewer() {
|
|||
>
|
||||
选择字幕
|
||||
</Button>
|
||||
{playlist.length > 2 && (
|
||||
{playlist.length >= 2 && (
|
||||
<Button
|
||||
onClick={(e) => setPlaylistOpen(e.currentTarget)}
|
||||
className={classes.actionButton}
|
||||
|
|
|
|||
Loading…
Reference in New Issue