Fix incompatibilities with new deps
This commit is contained in:
parent
9774c1448c
commit
2c9f805be0
|
|
@ -1,15 +1,12 @@
|
|||
import Head from 'next/head';
|
||||
import React from 'react';
|
||||
import {ErrorPageComponent} from '../js/components/ErrorComponents';
|
||||
import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
import '../static/css/everypage.css';
|
||||
import '../static/css/tournament-fullscreen.css';
|
||||
import {getTournamentMatches, getTournamentMeta} from '../js/redux/tournamentApi';
|
||||
import {
|
||||
Col, Container, DropdownItem, DropdownMenu, DropdownToggle, Navbar, NavbarBrand, NavItem, Row, UncontrolledDropdown
|
||||
Col, Container, DropdownItem, DropdownMenu, DropdownToggle, Navbar, NavbarBrand, NavItem, Row, UncontrolledDropdown,
|
||||
Spinner
|
||||
} from 'reactstrap';
|
||||
import {Match} from '../js/components/Match';
|
||||
import {Spinner} from 'react-bootstrap';
|
||||
|
||||
|
||||
function FullscreenPage(props) {
|
||||
|
|
@ -153,7 +150,7 @@ class Main extends React.Component {
|
|||
<title>Vollbild-Ansicht: turnie.re</title>
|
||||
</Head>
|
||||
<Container className='p-5 text-center text-secondary'>
|
||||
<Spinner animation='border' role='status' size='sm'/>
|
||||
<Spinner size='sm'/>
|
||||
<span className='ml-3'>lade Vollbild-Ansicht</span>
|
||||
</Container>
|
||||
</div>);
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import Head from 'next/head';
|
||||
import React from 'react';
|
||||
import {connect} from 'react-redux';
|
||||
import {ButtonGroup, Col, Container, Row, NavbarBrand} from 'reactstrap';
|
||||
import {ButtonGroup, Col, Container, Row} from 'reactstrap';
|
||||
|
||||
import {TurniereNavigation} from '../js/components/Navigation';
|
||||
import {StandingsTable} from '../js/components/StandingsTable';
|
||||
|
|
|
|||
|
|
@ -53,9 +53,9 @@ function StatisticsButton(props) {
|
|||
}
|
||||
|
||||
function FullscreenButton(props) {
|
||||
return (<TournamentStatusBarButton href={'/t/' + props.tournamentId + '/fullscreen'}>
|
||||
return (<LinkButton href={'/t/' + props.tournamentId + '/fullscreen'}>
|
||||
Vollbild-Ansicht
|
||||
</TournamentStatusBarButton>);
|
||||
</LinkButton>);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
nav li {
|
||||
list-style-type: none;
|
||||
}
|
||||
Loading…
Reference in New Issue