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