vault backup: 2026-08-19 11:05:04

This commit is contained in:
2026-08-19 11:05:04 -04:00
parent adcd726102
commit 1ffff7727d
6 changed files with 89 additions and 0 deletions
@@ -0,0 +1,34 @@
## All reported incidents
```dataview
TABLE
jira AS "Jira",
reported_at AS "Reported",
status AS "Classification"
FROM "20 Work/Tracking/Website Sync/Incidents"
SORT date DESC
```
## Premature checks
```dataview
TABLE
jira AS "Jira",
reported_at AS "Reported"
FROM "20 Work/Tracking/Website Sync/Incidents"
WHERE status = "premature-check"
SORT date DESC
```
## Confirmed sync issues
```dataview
TABLE
jira AS "Jira",
reported_at AS "Reported"
FROM "20 Work/Tracking/Website Sync/Incidents"
WHERE status = "confirmed-sync-issue"
SORT date DESC
```