Forwards.Title
parent
e07a1db7c3
commit
550a602a80
|
@ -32,6 +32,7 @@
|
||||||
"LogRows": "Log rows",
|
"LogRows": "Log rows",
|
||||||
"LogSize": "Log size",
|
"LogSize": "Log size",
|
||||||
"Forwards": {
|
"Forwards": {
|
||||||
|
"Title": "Forwards",
|
||||||
"From": "From",
|
"From": "From",
|
||||||
"To": "To",
|
"To": "To",
|
||||||
"Options": {
|
"Options": {
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
"LogRows": "Linii log",
|
"LogRows": "Linii log",
|
||||||
"LogSize": "Dimensiune log",
|
"LogSize": "Dimensiune log",
|
||||||
"Forwards": {
|
"Forwards": {
|
||||||
|
"Title": "Redirectări",
|
||||||
"From": "De la",
|
"From": "De la",
|
||||||
"To": "Către",
|
"To": "Către",
|
||||||
"Options": {
|
"Options": {
|
||||||
|
|
|
@ -12,6 +12,7 @@ import DonutLargeRoundedIcon from "@material-ui/icons/DonutLargeRounded";
|
||||||
import IconButton from "@material-ui/core/IconButton";
|
import IconButton from "@material-ui/core/IconButton";
|
||||||
import Tooltip from "@material-ui/core/Tooltip";
|
import Tooltip from "@material-ui/core/Tooltip";
|
||||||
import SessionForwardsHeaderComponent from "./SessionForwardsHeaderComponent";
|
import SessionForwardsHeaderComponent from "./SessionForwardsHeaderComponent";
|
||||||
|
import Typography from "@material-ui/core/Typography";
|
||||||
import { Grid } from "@material-ui/core";
|
import { Grid } from "@material-ui/core";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import styles from "../../../components/common/styles/tableStyles";
|
import styles from "../../../components/common/styles/tableStyles";
|
||||||
|
@ -28,6 +29,9 @@ const SessionForwardsComponent = ({ session, forwards, openOptionsDialog }) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Grid container>
|
<Grid container>
|
||||||
|
<Grid item xs={12} sm={12} md={12}>
|
||||||
|
<Typography variant="h6">{t("Session.Forwards.Title")}</Typography>
|
||||||
|
</Grid>
|
||||||
<Grid item xs={12} sm={12} md={12}>
|
<Grid item xs={12} sm={12} md={12}>
|
||||||
{!forwards || forwards.loading ? (
|
{!forwards || forwards.loading ? (
|
||||||
<Spinner />
|
<Spinner />
|
||||||
|
|
Loading…
Reference in New Issue