Skip to content

Commit

Permalink
chore: ESLint プラグインのバージョンアップに伴うエラーの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
s-sasaki-0529 committed Sep 18, 2024
1 parent c0db24a commit 2bfb9a5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ const _Template: StoryFn = (args) => (
<ul className="shr-list-none shr-space-y-1">
<li>
<FormControl title="時刻">
<TimePicker {...args} />
<TimePicker {...args} name="time" />
</FormControl>
</li>
<li>
<FormControl title="非活性">
<TimePicker {...args} disabled={true} />
<TimePicker {...args} disabled={true} name="time" />
</FormControl>
</li>
<li>
<FormControl title="エラーあり">
<TimePicker {...args} error={true} />
<TimePicker {...args} error={true} name="time" />
</FormControl>
</li>
<li>
<FormControl title="読み取り専用">
<TimePicker {...args} readOnly={true} />
<TimePicker {...args} readOnly={true} name="time" />
</FormControl>
</li>
</ul>
Expand Down

0 comments on commit 2bfb9a5

Please sign in to comment.