mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +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();
|
expect(result.brandTarget).not.toBeDefined();
|
||||||
});
|
});
|
||||||
it('should accept null', () => {
|
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({
|
expect(result).toMatchObject({
|
||||||
brandImage: null,
|
brandImage: null,
|
||||||
|
@ -33,7 +33,7 @@ export const LogoLink = styled.a(({ theme }) => ({
|
|||||||
|
|
||||||
export const Brand = withTheme(({ theme }) => {
|
export const Brand = withTheme(({ theme }) => {
|
||||||
const { title = 'Storybook', url = './', image, target } = theme.brand;
|
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
|
// When image is explicitly set to null, enable custom HTML support
|
||||||
if (image === null) {
|
if (image === null) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user