Revize 51f70e00
Přidáno uživatelem Lukáš Vlček před téměř 3 roky(ů)
webapp/pages/classes/index.tsx | ||
---|---|---|
7 | 7 |
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; |
8 | 8 |
import { faBookmark } from '@fortawesome/free-solid-svg-icons'; |
9 | 9 |
import { LoggedUserContext } from '../../contexts/LoggedUserContext'; |
10 |
import { MainLayout } from '../../layouts/mainLayout';
|
|
10 |
import { MainLayout } from '../../layouts/MainLayout';
|
|
11 | 11 |
|
12 | 12 |
function ClassesPage() { |
13 | 13 |
const redirecting = useUnauthRedirect('/login'); |
webapp/pages/documents/admin/index.tsx | ||
---|---|---|
7 | 7 |
import { faFileLines } from '@fortawesome/free-solid-svg-icons'; |
8 | 8 |
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; |
9 | 9 |
import { LoggedUserContext } from '../../../contexts/LoggedUserContext'; |
10 |
import { MainLayout } from '../../../layouts/mainLayout';
|
|
10 |
import { MainLayout } from '../../../layouts/MainLayout';
|
|
11 | 11 |
import { documentController } from '../../../controllers'; |
12 | 12 |
|
13 | 13 |
function AdminDocumentPage() { |
webapp/pages/documents/annotator/index.tsx | ||
---|---|---|
8 | 8 |
import { faFileLines } from '@fortawesome/free-solid-svg-icons'; |
9 | 9 |
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; |
10 | 10 |
import { LoggedUserContext } from '../../../contexts/LoggedUserContext'; |
11 |
import { MainLayout } from '../../../layouts/mainLayout';
|
|
11 |
import { MainLayout } from '../../../layouts/MainLayout';
|
|
12 | 12 |
|
13 | 13 |
function UserDocumentPage() { |
14 | 14 |
const redirecting = useUnauthRedirect('/login'); |
webapp/pages/export/index.tsx | ||
---|---|---|
7 | 7 |
import { faFileExport } from '@fortawesome/free-solid-svg-icons'; |
8 | 8 |
import { Typography } from 'antd'; |
9 | 9 |
import { LoggedUserContext } from '../../contexts/LoggedUserContext'; |
10 |
import { MainLayout } from '../../layouts/mainLayout';
|
|
10 |
import { MainLayout } from '../../layouts/MainLayout';
|
|
11 | 11 |
|
12 | 12 |
function ExportPage() { |
13 | 13 |
const redirecting = useUnauthRedirect('/login'); |
webapp/pages/login/index.tsx | ||
---|---|---|
2 | 2 |
import { Form, Input, Button } from 'antd'; |
3 | 3 |
import { UserOutlined, LockOutlined } from '@ant-design/icons'; |
4 | 4 |
import { LoggedUserContext } from '../../contexts/LoggedUserContext'; |
5 |
import { LoginLayout } from '../../layouts/loginLayout';
|
|
5 |
import { LoginLayout } from '../../layouts/LoginLayout';
|
|
6 | 6 |
import { useContext } from 'react'; |
7 | 7 |
import { useRouter } from 'next/router'; |
8 | 8 |
import { ShowToast } from '../../utils/alerts'; |
webapp/pages/tags/index.tsx | ||
---|---|---|
7 | 7 |
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; |
8 | 8 |
import { faTags } from '@fortawesome/free-solid-svg-icons'; |
9 | 9 |
import { LoggedUserContext } from '../../contexts/LoggedUserContext'; |
10 |
import { MainLayout } from '../../layouts/mainLayout';
|
|
10 |
import { MainLayout } from '../../layouts/MainLayout';
|
|
11 | 11 |
|
12 | 12 |
function TagsPage() { |
13 | 13 |
const redirecting = useUnauthRedirect('/login'); |
webapp/pages/users/index.tsx | ||
---|---|---|
7 | 7 |
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; |
8 | 8 |
import { faUsers } from '@fortawesome/free-solid-svg-icons'; |
9 | 9 |
import { LoggedUserContext } from '../../contexts/LoggedUserContext'; |
10 |
import { MainLayout } from '../../layouts/mainLayout';
|
|
10 |
import { MainLayout } from '../../layouts/MainLayout';
|
|
11 | 11 |
|
12 | 12 |
function UsersPage() { |
13 | 13 |
const redirecting = useUnauthRedirect('/login'); |
Také k dispozici: Unified diff
Build fixed