35 lines
417 B
Markdown
35 lines
417 B
Markdown
|
|
# Bug Log
|
||
|
|
|
||
|
|
```dataview
|
||
|
|
TABLE status, platform, date AS "Reported"
|
||
|
|
FROM "_notes/06 - Bugs & Issues"
|
||
|
|
WHERE file.name != "Bug Log"
|
||
|
|
SORT date DESC
|
||
|
|
```
|
||
|
|
|
||
|
|
---
|
||
|
|
|
||
|
|
## How to Log a Bug
|
||
|
|
|
||
|
|
Create a new note in this folder using the template below:
|
||
|
|
|
||
|
|
```
|
||
|
|
---
|
||
|
|
status: open
|
||
|
|
platform: iOS / Android / Web / Desktop
|
||
|
|
date: YYYY-MM-DD
|
||
|
|
---
|
||
|
|
|
||
|
|
## Description
|
||
|
|
|
||
|
|
## Steps to Reproduce
|
||
|
|
1.
|
||
|
|
2.
|
||
|
|
|
||
|
|
## Expected Behaviour
|
||
|
|
|
||
|
|
## Actual Behaviour
|
||
|
|
|
||
|
|
## Fix
|
||
|
|
```
|