feat: allow upercase path names in url query param (#8516)

feat: allow upercase path names in url query param
This commit is contained in:
Norbert de Langen 2019-11-15 01:24:10 +01:00 committed by GitHub
commit 532da44e5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,11 @@ export const parsePath: (path?: string) => StoryData = memoize(1000)(
};
if (path) {
const [, viewMode, storyId] = path.match(splitPathRegex) || [undefined, undefined, undefined];
const [, viewMode, storyId] = path.toLowerCase().match(splitPathRegex) || [
undefined,
undefined,
undefined,
];
if (viewMode) {
Object.assign(result, {
viewMode,