Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
Update issue templates (#162) #patch
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanJosipovic authored Aug 5, 2020
1 parent 0531e9d commit 77ebd7c
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
name: Bug report
about: Create a report to help us improve
title: "[Bug]"
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Please create a standalone Page which reproduces the issue and paste the code here in a code block.
[More Examples](https://github.com/IvanJosipovic/BlazorTable/tree/master/src/BlazorTable.Sample.Shared/Bugs)

```
@page "/Bug152"
<Table TableItem="PersonData" Items="data" ShowSearchBar="true" ShowFooter="true">
<Column TableItem="PersonData" Title="Id" Field="@(x => x.ShortId)" Sortable="false" Filterable="true" SetFooterValue="Count" />
<DetailTemplate TableItem="PersonData">
@context.ShortId
</DetailTemplate>
</Table>
@code
{
private PersonData[] data;
protected override void OnInitialized()
{
data = new PersonData[]
{
new PersonData()
{
ShortId = 5
}
};
}
public class PersonData
{
public int ShortId { get; set; }
}
}
```


**Expected behavior**
A clear and concise description of what you expected to happen.
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[Feat]"
labels: enhancement
assignees: ''

---

**Describe the solution you'd like**
A clear and concise description of what you want to happen.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/other.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Other
about: Any other reason
title: ''
labels: ''
assignees: ''

---


0 comments on commit 77ebd7c

Please sign in to comment.