This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update issue templates (#162) #patch
- Loading branch information
1 parent
0531e9d
commit 77ebd7c
Showing
3 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: Other | ||
about: Any other reason | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
|