mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
fix linting issues
This commit is contained in:
parent
20114ab68b
commit
c4ec87721d
@ -56,7 +56,13 @@ describe('create brand', () => {
|
||||
expect(result.brandTarget).not.toBeDefined();
|
||||
});
|
||||
it('should accept null', () => {
|
||||
const result = create({ base: 'light', brandTitle: null, brandUrl: null, brandImage: null, brandTarget: null });
|
||||
const result = create({
|
||||
base: 'light',
|
||||
brandTitle: null,
|
||||
brandUrl: null,
|
||||
brandImage: null,
|
||||
brandTarget: null,
|
||||
});
|
||||
|
||||
expect(result).toMatchObject({
|
||||
brandImage: null,
|
||||
|
@ -33,7 +33,7 @@ export const LogoLink = styled.a(({ theme }) => ({
|
||||
|
||||
export const Brand = withTheme(({ theme }) => {
|
||||
const { title = 'Storybook', url = './', image, target } = theme.brand;
|
||||
const targetValue = target ? target : (url === './' ? '' : '_blank');
|
||||
const targetValue = target || (url === './' ? '' : '_blank');
|
||||
|
||||
// When image is explicitly set to null, enable custom HTML support
|
||||
if (image === null) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user