mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:11:23 +08:00
FIX shortcuts validation
This commit is contained in:
parent
46b552b60d
commit
4e61e0ef5f
@ -53,7 +53,9 @@ export const Description = styled.div({
|
||||
alignSelf: 'center',
|
||||
});
|
||||
|
||||
export const TextInput = styled(Input)<{ valid: string }>(
|
||||
type ValidationStates = 'valid' | 'error' | 'warn';
|
||||
|
||||
export const TextInput = styled(Input)<{ valid: ValidationStates }>(
|
||||
({ valid, theme }) =>
|
||||
valid === 'error'
|
||||
? {
|
||||
@ -248,14 +250,14 @@ class ShortcutsScreen extends Component<ShortcutsScreenProps, ShortcutsScreenSta
|
||||
const { successField, shortcutKeys } = this.state;
|
||||
return activeElement === successField && shortcutKeys[activeElement].error === false
|
||||
? 'valid'
|
||||
: '';
|
||||
: undefined;
|
||||
};
|
||||
|
||||
displayError = (activeElement: Feature) => {
|
||||
displayError = (activeElement: Feature): ValidationStates => {
|
||||
const { activeFeature, shortcutKeys } = this.state;
|
||||
return activeElement === activeFeature && shortcutKeys[activeElement].error === true
|
||||
? 'error'
|
||||
: '';
|
||||
: undefined;
|
||||
};
|
||||
|
||||
renderKeyInput = () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user