diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 29d6d98..c9d0425 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -7,7 +7,9 @@ "Bash(python -c:*)", "Bash(npx vite build:*)", "Bash(wc:*)", - "Bash(ls:*)" + "Bash(ls:*)", + "Bash(node -c:*)", + "Bash(npm run lint:*)" ] } } diff --git a/bellsystemsblack-300x138_darkTheme.png b/bellsystemsblack-300x138_darkTheme.png deleted file mode 100644 index 3ffde5d..0000000 Binary files a/bellsystemsblack-300x138_darkTheme.png and /dev/null differ diff --git a/bellsystemsblack-300x138_lightTheme.png b/bellsystemsblack-300x138_lightTheme.png deleted file mode 100644 index 378e9f6..0000000 Binary files a/bellsystemsblack-300x138_lightTheme.png and /dev/null differ diff --git a/frontend/src/devices/DeviceDetail.jsx b/frontend/src/devices/DeviceDetail.jsx index 2467740..e019fd6 100644 --- a/frontend/src/devices/DeviceDetail.jsx +++ b/frontend/src/devices/DeviceDetail.jsx @@ -354,6 +354,7 @@ export default function DeviceDetail() { const [showDelete, setShowDelete] = useState(false); const [mqttStatus, setMqttStatus] = useState(null); const [locationName, setLocationName] = useState(null); + const cols = useBreakpoint(); const [deviceUsers, setDeviceUsers] = useState([]); const [usersLoading, setUsersLoading] = useState(false); @@ -447,8 +448,6 @@ export default function DeviceDetail() { const nextMaintenance = maintainedOn && stats.maintainancePeriod ? addDays(maintainedOn, stats.maintainancePeriod) : null; const maintenanceDaysLeft = nextMaintenance ? daysUntil(nextMaintenance) : null; - const cols = useBreakpoint(); - // ===== Section definitions ===== const deviceInfoSection = ( diff --git a/frontend/src/melodies/MelodyList.jsx b/frontend/src/melodies/MelodyList.jsx index 3b0b0d0..cb33413 100644 --- a/frontend/src/melodies/MelodyList.jsx +++ b/frontend/src/melodies/MelodyList.jsx @@ -16,8 +16,8 @@ const MELODY_TONES = ["", "normal", "festive", "cheerful", "lamentation"]; // All available columns with their defaults const ALL_COLUMNS = [ - { key: "status", label: "Status", defaultOn: true }, { key: "color", label: "Color", defaultOn: true }, + { key: "status", label: "Status", defaultOn: true }, { key: "name", label: "Name", defaultOn: true, alwaysOn: true }, { key: "description", label: "Description", defaultOn: false }, { key: "type", label: "Type", defaultOn: true },