mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-06 05:59:25 +08:00
fix(client): fix wrongly thumbnail previewing when file type is not supported by default (#5401)
This commit is contained in:
parent
60b3f9b2e2
commit
c29a60d623
@ -93,11 +93,7 @@ const testOpts = (ext: RegExp, options: { exclude?: string[]; include?: string[]
|
|||||||
};
|
};
|
||||||
|
|
||||||
export function getThumbnailPlaceholderURL(file, options: any = {}) {
|
export function getThumbnailPlaceholderURL(file, options: any = {}) {
|
||||||
if (file.url) {
|
|
||||||
return file.url;
|
|
||||||
}
|
|
||||||
for (let i = 0; i < UPLOAD_PLACEHOLDER.length; i++) {
|
for (let i = 0; i < UPLOAD_PLACEHOLDER.length; i++) {
|
||||||
// console.log(UPLOAD_PLACEHOLDER[i].ext, testOpts(UPLOAD_PLACEHOLDER[i].ext, options));
|
|
||||||
if (UPLOAD_PLACEHOLDER[i].ext.test(file.extname || file.filename || file.url || file.name)) {
|
if (UPLOAD_PLACEHOLDER[i].ext.test(file.extname || file.filename || file.url || file.name)) {
|
||||||
if (testOpts(UPLOAD_PLACEHOLDER[i].ext, options)) {
|
if (testOpts(UPLOAD_PLACEHOLDER[i].ext, options)) {
|
||||||
return UPLOAD_PLACEHOLDER[i].icon || UNKNOWN_FILE_ICON;
|
return UPLOAD_PLACEHOLDER[i].icon || UNKNOWN_FILE_ICON;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user