File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import MainView from "../MainView";
1313import Footer from "../Footer" ;
1414import { useAppDispatch , useAppSelector } from "../../store" ;
1515import { fetchThemes } from "../../slices/themeSlice" ;
16- import { resetTableContent } from "../../slices/tableSlice" ;
16+ import { resetTableProperties } from "../../slices/tableSlice" ;
1717
1818/**
1919 * This component renders the table view of events
@@ -31,7 +31,7 @@ const Themes = () => {
3131 let allowLoadIntoTable = true ;
3232
3333 // Clear table of previous data
34- dispatch ( resetTableContent ( ) ) ;
34+ dispatch ( resetTableProperties ( ) ) ;
3535
3636 dispatch ( fetchFilters ( "themes" ) ) ;
3737
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ import EventDetailsModal from "./partials/modals/EventDetailsModal";
3838import { showModal } from "../../selectors/eventDetailsSelectors" ;
3939import { eventsLinks } from "./partials/EventsNavigation" ;
4040import { Modal , ModalHandle } from "../shared/modals/Modal" ;
41- import { resetTableContent } from "../../slices/tableSlice" ;
41+ import { resetTableProperties } from "../../slices/tableSlice" ;
4242
4343// References for detecting a click outside of the container of the dropdown menu
4444const containerAction = React . createRef < HTMLDivElement > ( ) ;
@@ -72,7 +72,7 @@ const Events = () => {
7272 let allowLoadIntoTable = true ;
7373
7474 // Clear redux of previous table data
75- dispatch ( resetTableContent ( ) ) ;
75+ dispatch ( resetTableProperties ( ) ) ;
7676
7777 dispatch ( fetchFilters ( "events" ) )
7878
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import { fetchSeriesDetailsTobiraNew } from "../../slices/seriesSlice";
2929import { eventsLinks } from "./partials/EventsNavigation" ;
3030import { Modal , ModalHandle } from "../shared/modals/Modal" ;
3131import { availableHotkeys } from "../../configs/hotkeysConfig" ;
32- import { resetTableContent } from "../../slices/tableSlice" ;
32+ import { resetTableProperties } from "../../slices/tableSlice" ;
3333
3434// References for detecting a click outside of the container of the dropdown menu
3535const containerAction = React . createRef < HTMLDivElement > ( ) ;
@@ -57,7 +57,7 @@ const Series = () => {
5757 let allowLoadIntoTable = true ;
5858
5959 // Clear table of previous data
60- dispatch ( resetTableContent ( ) ) ;
60+ dispatch ( resetTableProperties ( ) ) ;
6161
6262 dispatch ( fetchFilters ( "series" ) )
6363
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import Footer from "../Footer";
1414import { useAppDispatch , useAppSelector } from "../../store" ;
1515import { fetchRecordings } from "../../slices/recordingSlice" ;
1616import { AsyncThunk } from "@reduxjs/toolkit" ;
17- import { resetTableContent } from "../../slices/tableSlice" ;
17+ import { resetTableProperties } from "../../slices/tableSlice" ;
1818
1919/**
2020 * This component renders the table view of recordings
@@ -31,7 +31,7 @@ const Recordings = () => {
3131 let allowLoadIntoTable = true ;
3232
3333 // Clear table of previous data
34- dispatch ( resetTableContent ( ) ) ;
34+ dispatch ( resetTableProperties ( ) ) ;
3535
3636 dispatch ( fetchFilters ( "recordings" ) ) ;
3737
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import Footer from "../Footer";
1616import { useAppDispatch , useAppSelector } from "../../store" ;
1717import { fetchJobs } from "../../slices/jobSlice" ;
1818import { systemsLinks } from "./partials/SystemsNavigation" ;
19- import { resetTableContent } from "../../slices/tableSlice" ;
19+ import { resetTableProperties } from "../../slices/tableSlice" ;
2020
2121/**
2222 * This component renders the table view of jobs
@@ -33,7 +33,7 @@ const Jobs = () => {
3333 let allowLoadIntoTable = true ;
3434
3535 // Clear table of previous data
36- dispatch ( resetTableContent ( ) ) ;
36+ dispatch ( resetTableProperties ( ) ) ;
3737
3838 dispatch ( fetchFilters ( "jobs" ) ) ;
3939
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import Footer from "../Footer";
1616import { useAppDispatch , useAppSelector } from "../../store" ;
1717import { fetchServers } from "../../slices/serverSlice" ;
1818import { systemsLinks } from "./partials/SystemsNavigation" ;
19- import { resetTableContent } from "../../slices/tableSlice" ;
19+ import { resetTableProperties } from "../../slices/tableSlice" ;
2020
2121/**
2222 * This component renders the table view of servers
@@ -33,7 +33,7 @@ const Servers = () => {
3333 let allowLoadIntoTable = true ;
3434
3535 // Clear table of previous data
36- dispatch ( resetTableContent ( ) ) ;
36+ dispatch ( resetTableProperties ( ) ) ;
3737
3838 dispatch ( fetchFilters ( "servers" ) ) ;
3939
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import Footer from "../Footer";
1616import { useAppDispatch , useAppSelector } from "../../store" ;
1717import { fetchServices } from "../../slices/serviceSlice" ;
1818import { systemsLinks } from "./partials/SystemsNavigation" ;
19- import { resetTableContent } from "../../slices/tableSlice" ;
19+ import { resetTableProperties } from "../../slices/tableSlice" ;
2020
2121/**
2222 * This component renders the table view of services
@@ -33,7 +33,7 @@ const Services = () => {
3333 let allowLoadIntoTable = true ;
3434
3535 // Clear table of previous data
36- dispatch ( resetTableContent ( ) ) ;
36+ dispatch ( resetTableProperties ( ) ) ;
3737
3838 dispatch ( fetchFilters ( "services" ) ) ;
3939
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import Footer from "../Footer";
1616import { useAppDispatch , useAppSelector } from "../../store" ;
1717import { fetchAcls } from "../../slices/aclSlice" ;
1818import { usersLinks } from "./partials/UsersNavigation" ;
19- import { resetTableContent } from "../../slices/tableSlice" ;
19+ import { resetTableProperties } from "../../slices/tableSlice" ;
2020
2121/**
2222 * This component renders the table view of acls
@@ -33,7 +33,7 @@ const Acls = () => {
3333 let allowLoadIntoTable = true ;
3434
3535 // Clear table of previous data
36- dispatch ( resetTableContent ( ) ) ;
36+ dispatch ( resetTableProperties ( ) ) ;
3737
3838 dispatch ( fetchFilters ( "acls" ) ) ;
3939
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import Footer from "../Footer";
1616import { useAppDispatch , useAppSelector } from "../../store" ;
1717import { fetchGroups } from "../../slices/groupSlice" ;
1818import { usersLinks } from "./partials/UsersNavigation" ;
19- import { resetTableContent } from "../../slices/tableSlice" ;
19+ import { resetTableProperties } from "../../slices/tableSlice" ;
2020
2121/**
2222 * This component renders the table view of groups
@@ -33,7 +33,7 @@ const Groups = () => {
3333 let allowLoadIntoTable = true ;
3434
3535 // Clear table of previous data
36- dispatch ( resetTableContent ( ) ) ;
36+ dispatch ( resetTableProperties ( ) ) ;
3737
3838 dispatch ( fetchFilters ( "groups" ) ) ;
3939
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import Footer from "../Footer";
1616import { useAppDispatch , useAppSelector } from "../../store" ;
1717import { fetchUsers } from "../../slices/userSlice" ;
1818import { usersLinks } from "./partials/UsersNavigation" ;
19- import { resetTableContent } from "../../slices/tableSlice" ;
19+ import { resetTableProperties } from "../../slices/tableSlice" ;
2020
2121/**
2222 * This component renders the table view of users
@@ -33,7 +33,7 @@ const Users = () => {
3333 let allowLoadIntoTable = true ;
3434
3535 // Clear table of previous data
36- dispatch ( resetTableContent ( ) ) ;
36+ dispatch ( resetTableProperties ( ) ) ;
3737
3838 dispatch ( fetchFilters ( "users" ) ) ;
3939
You can’t perform that action at this time.
0 commit comments