[Help] Edit existing Tags #520

Closed
opened 2026-02-28 01:49:16 -05:00 by deekerman · 10 comments
Owner

Originally created by @schmidiij on GitHub (Nov 3, 2021).

⚠️ Please verify that this bug has NOT been raised before.

  • I checked and didn't find similar issue

🛡️ Security Policy

📝 Describe your problem

Is there a option to edit existing Tags?

🐻 Uptime-Kuma Version

1.10.0

💻 Operating System and Arch

Synology

🌐 Browser

Microsoft Edge Version 95.0.1020.30

🐋 Docker Version

Synology Docker - 20.10.3-1239

🟩 NodeJS Version

No response

Originally created by @schmidiij on GitHub (Nov 3, 2021). ### ⚠️ Please verify that this bug has NOT been raised before. - [X] I checked and didn't find similar issue ### 🛡️ Security Policy - [X] I agree to have read this project [Security Policy](https://github.com/louislam/uptime-kuma/security/policy) ### 📝 Describe your problem Is there a option to edit existing Tags? ### 🐻 Uptime-Kuma Version 1.10.0 ### 💻 Operating System and Arch Synology ### 🌐 Browser Microsoft Edge Version 95.0.1020.30 ### 🐋 Docker Version Synology Docker - 20.10.3-1239 ### 🟩 NodeJS Version _No response_
deekerman 2026-02-28 01:49:16 -05:00
  • closed this issue
  • added the
    Stale
    help
    labels
Author
Owner

@chakflying commented on GitHub (Nov 3, 2021):

Reference #278, currently you can not edit an existing tag in the UI.

@chakflying commented on GitHub (Nov 3, 2021): Reference #278, currently you can not edit an existing tag in the UI.
Author
Owner

@Stage4000 commented on GitHub (Nov 5, 2021):

+1

@Stage4000 commented on GitHub (Nov 5, 2021): +1
Author
Owner

@spali commented on GitHub (Dec 14, 2021):

I would like to add a "side" feature for this. The order of tags drives me crazy ;)
During the same "edit" of tags they somehow behave different with the order when i re-add a tag with i.e. new value. If I add one tag after each other and save between, they get appended.
I would love have the possibility to reorder them or at least have a predictable order.
Currently to have a consistent order of tags, I need to "drop all tags", "save", "add tags in the order I want".
If custom order per monitor is to much work, maybe a "priority" or "order" number in the planed settings page for tag edit would be easier to implement.

@spali commented on GitHub (Dec 14, 2021): I would like to add a "side" feature for this. The order of tags drives me crazy ;) During the same "edit" of tags they somehow behave different with the order when i re-add a tag with i.e. new value. If I add one tag after each other and save between, they get appended. I would love have the possibility to reorder them or at least have a predictable order. Currently to have a consistent order of tags, I need to "drop all tags", "save", "add tags in the order I want". If custom order per monitor is to much work, maybe a "priority" or "order" number in the planed settings page for tag edit would be easier to implement.
Author
Owner

@Stage4000 commented on GitHub (Dec 14, 2021):

If they still haven't added this then I doubt they ever will. Seems like the easiest UI fix in the world but nobody wants to fix it.

@Stage4000 commented on GitHub (Dec 14, 2021): If they still haven't added this then I doubt they ever will. Seems like the easiest UI fix in the world but nobody wants to fix it.
Author
Owner

@RamboRogers commented on GitHub (Jan 4, 2022):

Totally needs this, or the ability to delete tags. Love this tool!

@RamboRogers commented on GitHub (Jan 4, 2022): Totally needs this, or the ability to delete tags. Love this tool!
Author
Owner

@JAKAMI99 commented on GitHub (Feb 7, 2022):

Really a needed "feature"

@JAKAMI99 commented on GitHub (Feb 7, 2022): Really a needed "feature"
Author
Owner

@wrench12435678 commented on GitHub (May 25, 2022):

an option to at least delete tags

@wrench12435678 commented on GitHub (May 25, 2022): an option to at least delete tags
Author
Owner

@Bouni commented on GitHub (Jun 28, 2022):

In case anybody really needs to change a tag, you can do it on the sqlite database directly:

sudo sqlite3 path/to/data/kuma.db

sqlite> .dump tag
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE tag (
        id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
        name VARCHAR(255) NOT NULL,
    color VARCHAR(255) NOT NULL,
        created_date DATETIME DEFAULT (DATETIME('now')) NOT NULL
);
INSERT INTO tag VALUES(1,'Tag1','#059669','2022-01-11 10:56:34');
INSERT INTO tag VALUES(2,'Tag2','#D97706','2022-01-11 10:57:33');
COMMIT;

sqlite> update tag set color='#8250DF' where id='2';
sqlite> .quit

The same applies for the name of a tag, just use update tag set name='Tag500' where id='1';

@Bouni commented on GitHub (Jun 28, 2022): In case anybody really needs to change a tag, you can do it on the sqlite database directly: ```bash sudo sqlite3 path/to/data/kuma.db sqlite> .dump tag PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE tag ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, name VARCHAR(255) NOT NULL, color VARCHAR(255) NOT NULL, created_date DATETIME DEFAULT (DATETIME('now')) NOT NULL ); INSERT INTO tag VALUES(1,'Tag1','#059669','2022-01-11 10:56:34'); INSERT INTO tag VALUES(2,'Tag2','#D97706','2022-01-11 10:57:33'); COMMIT; sqlite> update tag set color='#8250DF' where id='2'; sqlite> .quit ``` The same applies for the name of a tag, just use `update tag set name='Tag500' where id='1';`
Author
Owner

@github-actions[bot] commented on GitHub (Sep 26, 2022):

We are clearing up our old issues and your ticket has been open for 3 months with no activity. Remove stale label or comment or this will be closed in 2 days.

@github-actions[bot] commented on GitHub (Sep 26, 2022): We are clearing up our old issues and your ticket has been open for 3 months with no activity. Remove stale label or comment or this will be closed in 2 days.
Author
Owner

@github-actions[bot] commented on GitHub (Sep 28, 2022):

This issue was closed because it has been stalled for 2 days with no activity.

@github-actions[bot] commented on GitHub (Sep 28, 2022): This issue was closed because it has been stalled for 2 days with no activity.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/uptime-kuma#520
No description provided.