-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from SpeciesFileGroup/development
Development
- Loading branch information
Showing
13 changed files
with
195 additions
and
88 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,67 @@ | ||
| name: Bug | ||
| description: Open a new issue to describe a bug. | ||
| title: "[Bug]: " | ||
| labels: ["bug"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: > | ||
| Please describe the details of any bug you have found. Developers need to know specific details of what you found, where, and how this different from what you expect. _Need help filling this out? Once you have your feature details in hand, contact us and we'll help step you through filling out this issue._ | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| # Describe the bug | ||
| _Please provide a summary about the bug in the following form._ | ||
| - type: textarea | ||
| id: repro | ||
| attributes: | ||
| label: Steps to reproduce the bug | ||
| description: "How do you trigger this bug? Please walk us through it step by step. Try something like, When I do x, then I do y, and do z, I see this error" | ||
| value: | | ||
| 1. | ||
| 2. | ||
| 3. | ||
| ... | ||
| render: bash | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: bug_screenshot | ||
| attributes: | ||
| label: Screenshot | ||
| description: Drag/drop your image/s here | ||
| validations: | ||
| required: false | ||
| - type: textarea | ||
| id: expected_behavior | ||
| attributes: | ||
| label: Expected behavior | ||
| description: Describe briefly what you expect to happen. | ||
| placeholder: When I do a, I expect b, c, d | ||
| validations: | ||
| required: false | ||
| - type: textarea | ||
| id: extra_screenshots | ||
| attributes: | ||
| label: Additional Screenshots | ||
| description: If applicable, add screenshots to help explain your problem. Drag/drop your image/s here | ||
| validations: | ||
| required: false | ||
| - type: input | ||
| id: taxonpages_site | ||
| attributes: | ||
| label: TaxonPages Site URL | ||
| description: Which website has this bug, please put the URL here, use "local for development environments | ||
| placeholder: https://orthoptera.speciesfile.org/, local | ||
| - type: input | ||
| id: taxonpages_panel | ||
| attributes: | ||
| label: TaxonPages Panel | ||
| description: (optional) Provide which TaxonPages Panel has this bug | ||
| placeholder: Nomenclature, Map, Literature | ||
| - type: input | ||
| id: browser_used | ||
| attributes: | ||
| label: Browser Used | ||
| description: Please share the browser and its version you were using. | ||
| placeholder: (e.g. chrome, firefox) |
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,36 @@ | ||
| name: Feature request or enhancement | ||
| description: Open a new issue to describe and request a new feature or enhancement. These will be auto-labeled with _enhancement_. Be sure to provide an informative title. | ||
| labels: ["enhancement"] | ||
| body: | ||
| - type: textarea | ||
| id: summary | ||
| attributes: | ||
| label: Feature or enhancement | ||
| description: Please describe what you would like to be able to do or see. Consider telling a story, e.g. first I do x, then y, then I see z. | ||
| placeholder: E.g. When I am at X, then I need Y, and when I click, then I will see Z. | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: summary_target | ||
| attributes: | ||
| label: Location | ||
| description: Stepping back, where should this feature be found? Providing a URL path can help (e.g. /taxon_names/123). | ||
| placeholder: Nomenclature Panel | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: figures | ||
| attributes: | ||
| label: Screenshot, napkin sketch of interface, or conceptual description | ||
| description: Provide drawings or screenshots mocking-up (illustrating) your feature, or feature progression. | ||
| placeholder: Drag/drop your image(s) here | ||
| validations: | ||
| required: false | ||
| - type: input | ||
| id: summary_x | ||
| attributes: | ||
| label: Your role | ||
| description: Who are you, i.e. in what role are you making this feature request? | ||
| placeholder: Graduate student biologist | ||
| validations: | ||
| required: false |
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
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
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
| import internalError from '../view/500.vue' | ||
| import notFound from '../view/404.vue' | ||
|
|
||
| export default [ | ||
| { | ||
| path: '/500', | ||
| name: 'httpError500', | ||
| component: internalError | ||
| }, | ||
| { | ||
| path: '/:pathMatch(.*)*', | ||
| name: 'httpError400', | ||
| component: notFound | ||
| } | ||
| ] |
File renamed without changes.
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 @@ | ||
| <template> | ||
| <div class="container mx-auto text-center relative top-1/4"> | ||
| <h1 class="text-7xl text-base-lighter">500</h1> | ||
| <p>Internal Server Error.</p> | ||
| <p class="m-4 my-10 text-xl"> | ||
| Uh oh, looks like something went wrong!<br /> | ||
| We track these errors automatically, but if the problem persists feel free | ||
| to contact us. | ||
| </p> | ||
| </div> | ||
| </template> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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