You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
При установке disabled <Button href="/" Component={Link} disabled> появляется ошибка. Error: Failed prop type: The prop href expects a string or object in <Link>, but got undefined instead.
Ошибка начала появляться начиная с версии 6.0.0 и продолжает воспроизводиться на 6.1.2
Версия
6.1.2
В каких браузерах воспроизводится проблема?
Chrome
Шаги воспроизведения
import Link from 'next/link';
import { Button } from '@vkontakte/vkui';
const App = () => {
return (
<Button href="/" Component={Link} disabled>
Button with href
</Button>
);
};
export default App;
Описание
При установке disabled
<Button href="/" Component={Link} disabled>
появляется ошибка.Error: Failed prop type: The prop
href
expects astring
orobject
in<Link>
, but gotundefined
instead.Ошибка начала появляться начиная с версии 6.0.0 и продолжает воспроизводиться на 6.1.2
Версия
6.1.2
В каких браузерах воспроизводится проблема?
Chrome
Шаги воспроизведения
Ожидаемое поведение
No response
Скриншоты
Пример с воспроизведением
https://codesandbox.io/p/sandbox/button-73htzs?file=%2Fsrc%2FApp.js
The text was updated successfully, but these errors were encountered: