mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
Fix some deepscan issues
This commit is contained in:
parent
847b196bd0
commit
31694e05ba
@ -1,4 +1,4 @@
|
||||
import React, { FC, useCallback, useState } from 'react';
|
||||
import React, { FC, useCallback } from 'react';
|
||||
|
||||
import { opacify, transparentize } from 'polished';
|
||||
import { styled } from '@storybook/theming';
|
||||
|
@ -271,13 +271,13 @@ export const ObjectControl: React.FC<ObjectProps> = ({ name, value, onChange })
|
||||
|
||||
return (
|
||||
<Wrapper>
|
||||
{hasData && ['Object', 'Array'].includes(getObjectType(data)) && (
|
||||
{['Object', 'Array'].includes(getObjectType(data)) && (
|
||||
<RawButton onClick={() => setShowRaw((v) => !v)}>
|
||||
<Icons icon={showRaw ? 'eyeclose' : 'eye'} />
|
||||
<span>RAW</span>
|
||||
</RawButton>
|
||||
)}
|
||||
{hasData && !showRaw ? (
|
||||
{!showRaw ? (
|
||||
<JsonTree
|
||||
data={data}
|
||||
rootName={name}
|
||||
|
@ -1,5 +1,3 @@
|
||||
import { isNumber } from 'lodash';
|
||||
import { array } from 'prop-types';
|
||||
import React, { useState } from 'react';
|
||||
import { OptionsControl } from './Options';
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user