Skip to content

Commit

Permalink
pin skyportal to 764515a0909bdb2a701c18eb9dc05fa2837b8d8b
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodlz committed Jun 29, 2024
1 parent 65f42e6 commit 32e6ba4
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import * as Actions from "../../ducks/alert";
import { checkSource, fetchSource } from "../../ducks/source";
import { fetchSources } from "../../ducks/sources";

const VegaPlotZTFAlert = React.lazy(() => import("./VegaPlotZTFAlert"));
const VegaPlotZTFAlert = React.lazy(() => import("../plot/VegaPlotZTFAlert"));

const useStyles = makeStyles((theme) => ({
root: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const getMuiPopoverTheme = () =>
}),
);

const VegaPlotZTFArchive = React.lazy(() => import("./VegaPlotZTFArchive"));
const VegaPlotZTFArchive = React.lazy(() => import("../plot/VegaPlotZTFArchive"));

const useStyles = makeStyles((theme) => ({
root: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ import ReactDiffViewer from "react-diff-viewer";
import { useForm, Controller } from "react-hook-form";
import { showNotification } from "baselayer/components/Notifications";

import * as filterVersionActions from "../ducks/kowalski_filter";
import * as allocationActions from "../ducks/allocations";
import * as instrumentsActions from "../ducks/instruments";
import * as filterVersionActions from "../../ducks/kowalski_filter";
import * as allocationActions from "../../ducks/allocations";
import * as instrumentsActions from "../../ducks/instruments";

const useStyles = makeStyles((theme) => ({
pre: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import PropTypes from "prop-types";
import makeStyles from "@mui/styles/makeStyles";
import Typography from "@mui/material/Typography";

import * as archiveActions from "../ducks/archive";
import * as archiveActions from "../../ducks/archive";

import { greatCircleDistance } from "../utils";
import { greatCircleDistance } from "../../utils";

const hiddenCrossMatches = ["PS1_PSC"];

Expand Down
36 changes: 18 additions & 18 deletions fritz.defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,39 +85,39 @@ skyportal:
- path: "/source/:id"
component: source/Source
- path: "/favorites"
component: FavoritesPage
component: listing/FavoritesPage
- path: "/groups"
component: group/Groups
- path: "/group/:id"
component: group/Group
- path: "/profile"
component: Profile
component: user/Profile
- path: "/candidates"
component: candidate/CandidateList
- path: "/sources"
component: source/SourceList
- path: "/user/:id"
component: user/UserInfo
- path: "/upload_photometry/:id"
component: UploadPhotometry
component: photometry/UploadPhotometry
- path: "/about"
component: About
- path: "/share_data/:id"
component: ShareDataForm
component: source/ShareDataForm
- path: "/filter/:fid"
component: Filter
component: filter/Filter
- path: "/runs"
component: ObservingRunPage
component: observing_run/ObservingRunPage
- path: "/run/:id"
component: RunSummary
component: observing_run/RunSummary
- path: "/allocations"
component: allocation/AllocationPage
- path: "/allocation/:id"
component: allocation/AllocationSummary
- path: "/telescope/:id"
component: telescope/TelescopeSummary
- path: "/instrument/:id"
component: InstrumentSummary
component: instrument/InstrumentSummary
- path: "/group_sources/:id"
component: group/GroupSources
- path: "/user_management"
Expand All @@ -129,47 +129,47 @@ skyportal:
- path: "/archive"
component: archive/Archive
- path: "/upload_spectrum/:id"
component: UploadSpectrum
component: spectrum/UploadSpectrum
- path: "/source/:id/finder"
component: FindingChart
- path: "/observability/:id"
component: Observability
component: source/Observability
- path: "/source/:id/periodogram"
component: Periodogram
- path: "/db_stats"
component: DBStats
- path: "/galaxies"
component: GalaxyPage
component: galaxy/GalaxyPage
- path: "/spatial_catalogs"
component: SpatialCatalogPage
component: spatial_catalog/SpatialCatalogPage
- path: "/gcn_events"
component: gcn/GcnEvents
- path: "/gcn_events/:dateobs"
component: gcn/GcnEventPage
- path: "/telescopes"
component: telescope/TelescopePage
- path: "/instruments"
component: InstrumentPage
component: instrument/InstrumentPage
- path: "/mmadetectors"
component: mma_detector/MMADetectorPage
- path: "/services"
component: analysis/AnalysisServicePage
- path: "/recurring_apis"
component: RecurringAPIPage
- path: "/shifts"
component: ShiftNoId
component: shift/ShiftNoId
- path: "/shifts/:id"
component: ShiftWithId
component: shift/ShiftWithId
- path: "/summary_search"
component: SummarySearch
component: summary/SummarySearch
- path: "/observations"
component: ObservationPage
component: observation/ObservationPage
- path: "/followup_requests"
component: followup_request/FollowupRequestPage
- path: "/source/:obj_id/analysis/:analysis_id"
component: source/SourceAnalysisPage
- path: "/taxonomies"
component: TaxonomyPage
component: taxonomy/TaxonomyPage
- path: "/tns_robots"
component: tns/TNSRobotsPage
- path: "/tns_robot/:id/submissions"
Expand Down
2 changes: 1 addition & 1 deletion skyportal
Submodule skyportal updated 238 files

0 comments on commit 32e6ba4

Please sign in to comment.