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
Now if I run this code in the latest google chrome 108.0.5359.124 and then turn on mobile view (any mobile device)
Sometimes when I click on a tab, the input above gets focused but the tab didn't switch.
I have to click on the bottom of the text to switch the tabs.
What's most weird is when I drag the browser window to my mac, this problem does not exist.
import React, { useState } from "react";
import {
Tab as ReactTab,
Tabs as ReactTabs,
TabList as ReactList,
TabPanel as Panel
} from "react-tabs";
import "react-tabs/style/react-tabs.css";
const tabs = ["Not Started", "In Progress", "Completed"];
export default function App() {
const [activeTab, setActiveTab] = useState(0);
return (
<ReactTabs tabIndex={activeTab} setTabIndex={setActiveTab}>
<div>
<input placeholder="Type here" />
<ReactList>
{tabs.map((tab) => (
<ReactTab key={tab} data-cy={tab}>
{tab}
</ReactTab>
))}
</ReactList>
</div>
<div>
<Panel>ccc</Panel>
<Panel>bbb</Panel>
<Panel>111</Panel>
</div>
</ReactTabs>
);
}
I have a really weird problem with react-tabs
I have 2 desktops:
Now if I run this code in the latest google chrome
108.0.5359.124
and then turn on mobile view (any mobile device)Sometimes when I click on a tab, the input above gets focused but the tab didn't switch.
I have to click on the bottom of the text to switch the tabs.
What's most weird is when I drag the browser window to my mac, this problem does not exist.
code:
https://codesandbox.io/s/async-cloud-gxpfor
Just visit: https://gxpfor.csb.app/ and open developer tools with a mobile view
Nagranie.z.ekranu.2023-01-10.o.11.10.08.mov
The text was updated successfully, but these errors were encountered: