Skip to content

Commit

Permalink
Merge pull request #148 from besscroft/v2
Browse files Browse the repository at this point in the history
fix: 修复文件上传默认值问题
  • Loading branch information
besscroft authored Nov 11, 2024
2 parents 1b8ef48 + 179fa2f commit fd6d615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/admin/upload/FileUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { CircleHelpIcon } from '~/components/icons/circle-help'
export default function FileUpload() {
const [alistStorage, setAlistStorage] = useState([])
const [storageSelect, setStorageSelect] = useState(false)
const [storage, setStorage] = useState('')
const [storage, setStorage] = useState('r2')
const [album, setAlbum] = useState('')
const [alistMountPath, setAlistMountPath] = useState('')
const [exif, setExif] = useState({} as ExifType)
Expand Down

0 comments on commit fd6d615

Please sign in to comment.