Skip to content

Commit faed40b

Browse files
committed
Change issue templates to not hide stuff by default
Using the "details" tag for all templates is excessive since most of the time, the compilation output is quite small, and not seeing it at a glance can be confusing. Only stack traces are worth hiding.
1 parent c8371e4 commit faed40b

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,10 @@ assignees: ''
1313
println("hello, world")
1414
```
1515

16-
<details>
17-
<summary>Compilation output</summary>
16+
## Compilation output
1817

1918
```scala
20-
# TODO add compilation output here
19+
// TODO add compilation output here
2120
```
22-
</details>
2321

2422
## expectation

.github/ISSUE_TEMPLATE/crash.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@ assignees: ''
1313
println("hello, world")
1414
```
1515

16-
16+
## Crash output (click arrow to expand)
1717
<details>
18-
<summary>Stack trace</summary>
1918

2019
```scala
21-
# TODO add stack trace here
20+
// TODO add output here
2221
```
2322
</details>

.github/ISSUE_TEMPLATE/other-issue.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,10 @@ assignees: ''
1313
println("hello, world")
1414
```
1515

16-
<details>
17-
<summary>Compilation output</summary>
16+
## Compilation output
1817

1918
```scala
20-
# TODO add compilation output here
19+
// TODO add compilation output here
2120
```
22-
</details>
2321

2422
## expectation

0 commit comments

Comments
 (0)