Merge pull request #5773 from storybooks/5665-fix-deprecated-options

Fix deprecated url/name options
This commit is contained in:
Michael Shilman 2019-02-26 18:03:15 +08:00 committed by Michael Shilman
parent 4057541bff
commit 66765e98af

View File

@ -8,6 +8,7 @@ const applyDeprecatedUiOptions = deprecate(({ name, url, theme }) => {
const vars = {
brandTitle: name,
brandUrl: url,
brandImage: null,
};
return { theme: create(vars, theme) };