diff --git a/gcs/src/components/dashboard/tabsSection.jsx b/gcs/src/components/dashboard/tabsSection.jsx index 9128515e6..002a971b3 100644 --- a/gcs/src/components/dashboard/tabsSection.jsx +++ b/gcs/src/components/dashboard/tabsSection.jsx @@ -7,7 +7,7 @@ import { Tabs } from "@mantine/core" // Tab Componenents -import CameraTabsSection from "./tabsSectionTabs/CameraTabsSection" +import CameraTabsSection from "./tabsSectionTabs/cameraTabsSection" import ActionTabsSection from "./tabsSectionTabs/actionTabsSection" import MissionTabsSection from "./tabsSectionTabs/missionTabsSection" import DataTabsSection from "./tabsSectionTabs/dataTabsSection" diff --git a/gcs/src/components/spotlight/actions.jsx b/gcs/src/components/spotlight/actions.jsx index 440bafe58..9e7b863f2 100644 --- a/gcs/src/components/spotlight/actions.jsx +++ b/gcs/src/components/spotlight/actions.jsx @@ -12,7 +12,7 @@ import tailwindConfig from "../../../tailwind.config" const tailwindColors = resolveConfig(tailwindConfig).theme.colors const badgeColor = tailwindColors.falcongrey[600] -export let actions = [] +let actions = [] function AddSpotlightAction( id, label, diff --git a/run.bash b/run.bash new file mode 100755 index 000000000..39ecb076f --- /dev/null +++ b/run.bash @@ -0,0 +1,13 @@ +#!/bin/sh + +source radio/venv/bin/activate + +# Check for updates +if [ -z "$1" ]; then + concurrently "python radio/app.py" "cd gcs && yarn dev" -n "backend,frontend" -c "red,blue" +else + cd radio + pip install -r requirements.txt + cd ../ + concurrently "python radio/app.py" "cd gcs && yarn dev" -n "backend,frontend" -c "red,blue" +fi \ No newline at end of file