mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
fix missing supported extension check in case when asset is a string
I've came across this inconsistent logic while investigating my own issue: https://github.com/storybooks/storybook/issues/2363
This commit is contained in:
parent
e6a776be0a
commit
83b0798e32
@ -29,7 +29,9 @@ const urlsFromAssets = assets => {
|
||||
.forEach(key => {
|
||||
let asset = assets[key];
|
||||
if (typeof asset === 'string') {
|
||||
urls[getExtensionForFilename(asset)].push(asset);
|
||||
if (Boolean(urls[getExtensionForFilename(asset)])) {
|
||||
urls[getExtensionForFilename(asset)].push(asset);
|
||||
}
|
||||
} else {
|
||||
if (!Array.isArray(asset)) {
|
||||
asset = [asset];
|
||||
|
Loading…
x
Reference in New Issue
Block a user