feat: device labels — user-assigned names for network devices (#80) - #85
Merged
Merged
Conversation
- Add nullable 'label' column to devices table with migration
- PATCH /api/devices/{id}/label endpoint to set or clear label
- DevicesPage: shows label (or hostname fallback) with hover ✏ inline editor
- DeviceDetailPage: label row in metadata with inline editing, shows label as subtitle
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #80
Lets users annotate any device with a human-readable label (e.g. "daughter's laptop", "Synology NAS", "old printer"). Labels survive re-scans, show as the primary identifier in the device table, and can be edited inline without leaving the page.
Changes
Backend
Devicemodel: new nullablelabel(VARCHAR) columndb.py: migration for existing databasesDeviceOutschema: exposeslabelPATCH /api/devices/{id}/label: set or clear the label (empty string → null)Frontend
api.ts:Device.label: string | nullDevicesPage: hostname column now showslabel ?? hostname ?? —; hover reveals ✏ button for inline editing (blur/Enter to save, Escape to cancel)DeviceDetailPage: Label row added to metadata card with same inline edit UX; subtitle in page header reflects label if set