-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an "unarchive" button on archived dashboards #982
Comments
For people who find this by Googling, here's how I un-archive via updating the DB: UPDATE dashboards
SET is_archived = false
WHERE slug = 'mycooldashboard'; |
@benmanns How to update the postgress DB in the docker?
|
|
@gclsoft That does not look like it is related to this issue. Again, please refer this kind of issue to the forum. Thank you! |
For anyone looking for a solution that's not yet running the latest version, the below workaound seems to do it:
Would advise calling and storing GET result first as a backup, since we're POSTing (PATCHing not allowed). |
If someone accidentally clicks "archive", it'd be nice to be able to undo that from the UI
The text was updated successfully, but these errors were encountered: