mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +03:00
Fix various console errors and graphql loading issues (#760)
* Refactor listhook to resolve loading issues * Fix graphql loading race conditions * Various console spam * Fix scene card overlay hierarchy * Fix modal and manual borders
This commit is contained in:
@@ -132,7 +132,7 @@ export const Manual: React.FC<IManualProps> = ({ show, onClose }) => {
|
||||
<Nav variant="pills" className="flex-column">
|
||||
{content.map((c) => {
|
||||
return (
|
||||
<Nav.Item>
|
||||
<Nav.Item key={`${c.key}-nav`}>
|
||||
<Nav.Link className={c.className} eventKey={c.key}>
|
||||
{c.title}
|
||||
</Nav.Link>
|
||||
@@ -146,7 +146,11 @@ export const Manual: React.FC<IManualProps> = ({ show, onClose }) => {
|
||||
<Tab.Content>
|
||||
{content.map((c) => {
|
||||
return (
|
||||
<Tab.Pane eventKey={c.key} onClick={interceptLinkClick}>
|
||||
<Tab.Pane
|
||||
eventKey={c.key}
|
||||
key={`${c.key}-pane`}
|
||||
onClick={interceptLinkClick}
|
||||
>
|
||||
<Page page={c.content} />
|
||||
</Tab.Pane>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user