wnm168 commited on
Commit
eb6f6c8
·
verified ·
1 Parent(s): f9c2462

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +2 -2
index.html CHANGED
@@ -1105,7 +1105,7 @@
1105
  row.is_dir ? <Nav.Link
1106
  as={Link}
1107
  className="nav-link text-dark"
1108
- to={path + encodeURIComponent(row.name) + '/'}
1109
  target="_blank"
1110
  >
1111
  <Icon
@@ -1119,7 +1119,7 @@
1119
  size="6"
1120
  className="me-2"
1121
  onClick={async () => {
1122
- let data = { "path": decodeURIComponent(path + row.name), "password": "" }
1123
  await downloadMutation(data);
1124
  }}
1125
  />
 
1105
  row.is_dir ? <Nav.Link
1106
  as={Link}
1107
  className="nav-link text-dark"
1108
+ to={encodeURI(path + row.name + '/')}
1109
  target="_blank"
1110
  >
1111
  <Icon
 
1119
  size="6"
1120
  className="me-2"
1121
  onClick={async () => {
1122
+ let data = { "path": path + row.name, "password": "" }
1123
  await downloadMutation(data);
1124
  }}
1125
  />