From d13f95e55a4f08ebfa9e605a9d3050ca80d078e5 Mon Sep 17 00:00:00 2001 From: Jacco van den Berg Date: Sat, 1 Jan 2022 01:42:50 +0100 Subject: [PATCH 1/8] Make issue templates fancier --- .github/ISSUE_TEMPLATE/BUG.md | 50 ------------------- .github/ISSUE_TEMPLATE/DOCS.md | 25 ---------- .github/ISSUE_TEMPLATE/FEATURE.md | 25 ---------- .github/ISSUE_TEMPLATE/SUPPORT.md | 27 ----------- .github/ISSUE_TEMPLATE/bug.yml | 78 ++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++ .github/ISSUE_TEMPLATE/docs.yml | 33 +++++++++++++ .github/ISSUE_TEMPLATE/feature.yml | 29 +++++++++++ 8 files changed, 145 insertions(+), 127 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/BUG.md delete mode 100644 .github/ISSUE_TEMPLATE/DOCS.md delete mode 100644 .github/ISSUE_TEMPLATE/FEATURE.md delete mode 100644 .github/ISSUE_TEMPLATE/SUPPORT.md create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/docs.yml create mode 100644 .github/ISSUE_TEMPLATE/feature.yml diff --git a/.github/ISSUE_TEMPLATE/BUG.md b/.github/ISSUE_TEMPLATE/BUG.md deleted file mode 100644 index c83a09ee18c..00000000000 --- a/.github/ISSUE_TEMPLATE/BUG.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -name: Bug Report -about: Something went awry -labels: 'type: bug' ---- - - - -## Expected Behavior - - -## Current Behavior - - -## Possible Solution - - -## Steps to Reproduce - - -## Context - - -## Environment - -* Chart.js version: -* Browser name and version: -* Link to your project: diff --git a/.github/ISSUE_TEMPLATE/DOCS.md b/.github/ISSUE_TEMPLATE/DOCS.md deleted file mode 100644 index 6f6b0e43d11..00000000000 --- a/.github/ISSUE_TEMPLATE/DOCS.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: Documentation -about: Are the docs lacking or missing something? -labels: 'type: documentation' ---- - -Documentation Is: - - - -- [ ] Missing or needed -- [ ] Confusing -- [ ] Not Sure? - -### Please Explain in Detail... - - -### Your Proposal for Changes - - -### Example - diff --git a/.github/ISSUE_TEMPLATE/FEATURE.md b/.github/ISSUE_TEMPLATE/FEATURE.md deleted file mode 100644 index 22b716a1db5..00000000000 --- a/.github/ISSUE_TEMPLATE/FEATURE.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: Feature Request -about: Suggest an idea -labels: 'type: enhancement' ---- - - - -### Feature Proposal - - -### Feature Use Case - - - -## Possible Implementation - diff --git a/.github/ISSUE_TEMPLATE/SUPPORT.md b/.github/ISSUE_TEMPLATE/SUPPORT.md deleted file mode 100644 index 1b554bbf4bb..00000000000 --- a/.github/ISSUE_TEMPLATE/SUPPORT.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Support, Help, and Advice -about: Need help or support? Head to https://stackoverflow.com/questions/tagged/chart.js -labels: 'type: support' ---- - - diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000000..2bb8f0b31c2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,78 @@ +name: Bug Report +description: Something went awry +title: "" +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Need help or support? + Please don't open an issue! Head to https://stackoverflow.com/questions/tagged/chart.js. + + - type: markdown + attributes: + value: "Bug reports MUST be submitted with an interactive example: https://codepen.io/pen?template=BapRepQ." + + - type: markdown + attributes: + value: Chart.js versions lower then 3.x are NOT supported anymore, new issues will be disregarded. + + - type: textarea + attributes: + label: Expected behavior + description: Tell us what should happen. + validations: + required: true + + - type: textarea + attributes: + label: Current behavior + description: Tell us what happens instead of the expected behavior. + validations: + required: true + + - type: input + attributes: + label: Reproducable sample + description: | + Please provide issue reproduction. + You can use [this codepen](https://codepen.io/pen?template=BapRepQ) to make a reproducable sample. + + If filing a bug against `master`, you may reference the latest code via + https://www.chartjs.org/dist/master/chart.min.js (changing the filename to + point at the file you need as appropriate). Do not rely on these files for + production purposes as they may be removed at any time. + validations: + required: true + + - type: textarea + attributes: + label: Optional extra steps/info to reproduce + + - type: textarea + attributes: + label: Possible solution + description: If you have suggestions on a fix for the bug. + + - type: textarea + attributes: + label: Context + description: | + How has this issue affected you? What are you trying to accomplish? + Providing context helps us come up with a solution that is most useful in the real world. + + - type: input + attributes: + label: chart.js version + description: Which version of `chart.js` are you using? + placeholder: "v0.0.0" + validations: + required: true + + - type: input + attributes: + label: Browser name and version + + - type: input + attributes: + label: Link to your project diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000000..8691ce0fd0f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Support, Help, and Advice + url: https://stackoverflow.com/questions/tagged/chart.js + about: Need help or support? Head to https://stackoverflow.com/questions/tagged/chart.js \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml new file mode 100644 index 00000000000..78ab0ef2080 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -0,0 +1,33 @@ +name: Documentation +description: Are the docs lacking or missing something? +title: "" +labels: ["documentation"] +body: + - type: checkboxes + attributes: + label: "Documentation Is:" + options: + - label: Missing or needed? + - label: Confusing + - label: Not sure? + + - type: textarea + attributes: + label: Please Explain in Detail... + validations: + required: true + + - type: textarea + attributes: + label: Your Proposal for Changes + validations: + required: true + + - type: textarea + attributes: + label: Example + description: | + Provide a link to a live example demonstrating the issue or feature to be documented: + https://codepen.io/pen?template=BapRepQ + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000000..e5b940f8694 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,29 @@ +name: Feature Request +description: Suggest an idea +title: "" +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + Most features should start as plugins outside of Chart.js + (https://www.chartjs.org/docs/#advanced-usage-creating-plugins). + Please consider whether your changes are useful for all users, or if this is + specific to your usecase and a Chart.js plugin would be more appropriate. + + Need help or tech support? Please don't open an issue! + Head to https://stackoverflow.com/questions/tagged/chart.js + + - type: textarea + attributes: + label: Feature Proposal + description: | + What are you trying to accomplish? + Providing context helps us come up with a solution that is most useful in the real world + validations: + required: true + + - type: textarea + attributes: + label: Possible Implementation + description: Not obligatory, but suggest ideas for how to implement the addition or change From d443e95a94ec50d9346f39a34a0c52ef3fb8563b Mon Sep 17 00:00:00 2001 From: Jacco van den Berg Date: Sat, 1 Jan 2022 01:46:29 +0100 Subject: [PATCH 2/8] should be valid yml now --- .github/ISSUE_TEMPLATE/bug.yml | 20 ++++++++++---------- .github/ISSUE_TEMPLATE/docs.yml | 4 ++-- .github/ISSUE_TEMPLATE/feature.yml | 16 ++++++++-------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 2bb8f0b31c2..82e225a98aa 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -6,8 +6,8 @@ body: - type: markdown attributes: value: | - Need help or support? - Please don't open an issue! Head to https://stackoverflow.com/questions/tagged/chart.js. + Need help or support? + Please don't open an issue! Head to https://stackoverflow.com/questions/tagged/chart.js. - type: markdown attributes: @@ -35,13 +35,13 @@ body: attributes: label: Reproducable sample description: | - Please provide issue reproduction. - You can use [this codepen](https://codepen.io/pen?template=BapRepQ) to make a reproducable sample. + Please provide issue reproduction. + You can use [this codepen](https://codepen.io/pen?template=BapRepQ) to make a reproducable sample. - If filing a bug against `master`, you may reference the latest code via - https://www.chartjs.org/dist/master/chart.min.js (changing the filename to - point at the file you need as appropriate). Do not rely on these files for - production purposes as they may be removed at any time. + If filing a bug against `master`, you may reference the latest code via + https://www.chartjs.org/dist/master/chart.min.js (changing the filename to + point at the file you need as appropriate). Do not rely on these files for + production purposes as they may be removed at any time. validations: required: true @@ -58,8 +58,8 @@ body: attributes: label: Context description: | - How has this issue affected you? What are you trying to accomplish? - Providing context helps us come up with a solution that is most useful in the real world. + How has this issue affected you? What are you trying to accomplish? + Providing context helps us come up with a solution that is most useful in the real world. - type: input attributes: diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml index 78ab0ef2080..101f754bc8d 100644 --- a/.github/ISSUE_TEMPLATE/docs.yml +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -27,7 +27,7 @@ body: attributes: label: Example description: | - Provide a link to a live example demonstrating the issue or feature to be documented: - https://codepen.io/pen?template=BapRepQ + Provide a link to a live example demonstrating the issue or feature to be documented: + https://codepen.io/pen?template=BapRepQ validations: required: true diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index e5b940f8694..a4891c9de03 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -6,20 +6,20 @@ body: - type: markdown attributes: value: | - Most features should start as plugins outside of Chart.js - (https://www.chartjs.org/docs/#advanced-usage-creating-plugins). - Please consider whether your changes are useful for all users, or if this is - specific to your usecase and a Chart.js plugin would be more appropriate. + Most features should start as plugins outside of Chart.js + (https://www.chartjs.org/docs/#advanced-usage-creating-plugins). + Please consider whether your changes are useful for all users, or if this is + specific to your usecase and a Chart.js plugin would be more appropriate. - Need help or tech support? Please don't open an issue! - Head to https://stackoverflow.com/questions/tagged/chart.js + Need help or tech support? Please don't open an issue! + Head to https://stackoverflow.com/questions/tagged/chart.js - type: textarea attributes: label: Feature Proposal description: | - What are you trying to accomplish? - Providing context helps us come up with a solution that is most useful in the real world + What are you trying to accomplish? + Providing context helps us come up with a solution that is most useful in the real world validations: required: true From 0b722806adabf21e58d2f1bb904cbd52375d749f Mon Sep 17 00:00:00 2001 From: Jacco van den Berg Date: Sat, 1 Jan 2022 01:48:12 +0100 Subject: [PATCH 3/8] remove title field --- .github/ISSUE_TEMPLATE/bug.yml | 1 - .github/ISSUE_TEMPLATE/docs.yml | 1 - .github/ISSUE_TEMPLATE/feature.yml | 1 - 3 files changed, 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 82e225a98aa..cba9184d7c3 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,6 +1,5 @@ name: Bug Report description: Something went awry -title: "" labels: ["bug"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml index 101f754bc8d..54d82628c97 100644 --- a/.github/ISSUE_TEMPLATE/docs.yml +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -1,6 +1,5 @@ name: Documentation description: Are the docs lacking or missing something? -title: "" labels: ["documentation"] body: - type: checkboxes diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index a4891c9de03..d239c9c95c5 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -1,6 +1,5 @@ name: Feature Request description: Suggest an idea -title: "" labels: ["enhancement"] body: - type: markdown From 79d3fb691739a364a2d16fb9fc4367aa15b90091 Mon Sep 17 00:00:00 2001 From: Jacco van den Berg Date: Sat, 1 Jan 2022 02:14:07 +0100 Subject: [PATCH 4/8] remove reproducable sample for docs --- .github/ISSUE_TEMPLATE/docs.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml index 54d82628c97..0529b9e7f7c 100644 --- a/.github/ISSUE_TEMPLATE/docs.yml +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -21,12 +21,3 @@ body: label: Your Proposal for Changes validations: required: true - - - type: textarea - attributes: - label: Example - description: | - Provide a link to a live example demonstrating the issue or feature to be documented: - https://codepen.io/pen?template=BapRepQ - validations: - required: true From c247d974164187649c1920a2d1dc91437366f2ad Mon Sep 17 00:00:00 2001 From: Jacco van den Berg Date: Sun, 2 Jan 2022 00:54:04 +0100 Subject: [PATCH 5/8] add example back to docs, change link for plugin and add TS link for TS issues --- .github/ISSUE_TEMPLATE/bug.yml | 2 ++ .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/ISSUE_TEMPLATE/docs.yml | 8 ++++++++ .github/ISSUE_TEMPLATE/feature.yml | 2 +- 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index cba9184d7c3..6e351b2edda 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -37,6 +37,8 @@ body: Please provide issue reproduction. You can use [this codepen](https://codepen.io/pen?template=BapRepQ) to make a reproducable sample. + For typescript issues you can make use of [this TS Playground](https://www.typescriptlang.org/play?#code/JYWwDg9gTgLgBAbzgYQBYENZwL5wGZQQhwDkAxhrAHQBWAziQNwCwAUGwG6ZxkwAecALxwAJhDIBXEAFMAdjCoBzaTACiAG2kz5AIQCeASREAKAEQg9aTDFMBKOOjpwAEgBUAsgBlk6WVzoaWnIwLKxcUHAWVljCstIA7iiUMMa8fAA0iGxwOXAwemDSAFyk6sBxJOnZuSLoMOglCNW5ueroAEbS6nQlANqmAErSIqaZpjrqEtKjcKYAml3qEPEzpgDiUNJyqwAKElBgmqsA8lC+yqYAulWsLS219XQqPXC9Tbd3n22d6iUkAMRwCB4OAANQgMGkDBun0+DwarwAjAAmTKIgCcmQAzJkAKyZVFwLHXZp3bCXUnYGG5CBgGDACCyF7vT50MjoTTM0ktPiNbl3fk5KmCuB6PkfWFwEXYfkyiU4NjYWyMIA) to make a reproducable sample. + If filing a bug against `master`, you may reference the latest code via https://www.chartjs.org/dist/master/chart.min.js (changing the filename to point at the file you need as appropriate). Do not rely on these files for diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 8691ce0fd0f..c01d78e9aff 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -2,4 +2,4 @@ blank_issues_enabled: false contact_links: - name: Support, Help, and Advice url: https://stackoverflow.com/questions/tagged/chart.js - about: Need help or support? Head to https://stackoverflow.com/questions/tagged/chart.js \ No newline at end of file + about: Need help or support? Head to https://stackoverflow.com/questions/tagged/chart.js diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml index 0529b9e7f7c..f2fb68d1451 100644 --- a/.github/ISSUE_TEMPLATE/docs.yml +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -21,3 +21,11 @@ body: label: Your Proposal for Changes validations: required: true + + - type: input + attributes: + label: Example + description: | + Provide a link to a live example demonstrating the issue or feature to be documented: + Normal: https://codepen.io/pen?template=BapRepQ + TS: [TS Playground](https://www.typescriptlang.org/play?#code/JYWwDg9gTgLgBAbzgYQBYENZwL5wGZQQhwDkAxhrAHQBWAziQNwCwAUGwG6ZxkwAecALxwAJhDIBXEAFMAdjCoBzaTACiAG2kz5AIQCeASREAKAEQg9aTDFMBKOOjpwAEgBUAsgBlk6WVzoaWnIwLKxcUHAWVljCstIA7iiUMMa8fAA0iGxwOXAwemDSAFyk6sBxJOnZuSLoMOglCNW5ueroAEbS6nQlANqmAErSIqaZpjrqEtKjcKYAml3qEPEzpgDiUNJyqwAKElBgmqsA8lC+yqYAulWsLS219XQqPXC9Tbd3n22d6iUkAMRwCB4OAANQgMGkDBun0+DwarwAjAAmTKIgCcmQAzJkAKyZVFwLHXZp3bCXUnYGG5CBgGDACCyF7vT50MjoTTM0ktPiNbl3fk5KmCuB6PkfWFwEXYfkyiU4NjYWyMIA) diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index d239c9c95c5..8fe8e8f6209 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -6,7 +6,7 @@ body: attributes: value: | Most features should start as plugins outside of Chart.js - (https://www.chartjs.org/docs/#advanced-usage-creating-plugins). + (https://www.chartjs.org/docs/latest/developers/plugins.html). Please consider whether your changes are useful for all users, or if this is specific to your usecase and a Chart.js plugin would be more appropriate. From 4e7215e5c093d6d88ac0deed93100324877e3591 Mon Sep 17 00:00:00 2001 From: Jacco van den Berg Date: Sun, 2 Jan 2022 02:09:23 +0100 Subject: [PATCH 6/8] wrong labels, forgot type: in front of it --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- .github/ISSUE_TEMPLATE/docs.yml | 2 +- .github/ISSUE_TEMPLATE/feature.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 6e351b2edda..17d229f77e4 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,6 +1,6 @@ name: Bug Report description: Something went awry -labels: ["bug"] +labels: ["type: bug"] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/docs.yml b/.github/ISSUE_TEMPLATE/docs.yml index f2fb68d1451..1461fcf1537 100644 --- a/.github/ISSUE_TEMPLATE/docs.yml +++ b/.github/ISSUE_TEMPLATE/docs.yml @@ -1,6 +1,6 @@ name: Documentation description: Are the docs lacking or missing something? -labels: ["documentation"] +labels: ["type: documentation"] body: - type: checkboxes attributes: diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml index 8fe8e8f6209..2795b1edb5a 100644 --- a/.github/ISSUE_TEMPLATE/feature.yml +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -1,6 +1,6 @@ name: Feature Request description: Suggest an idea -labels: ["enhancement"] +labels: ["type: enhancement"] body: - type: markdown attributes: From 2a25831a9551012753deb68449d666504deb623a Mon Sep 17 00:00:00 2001 From: Jacco van den Berg Date: Mon, 3 Jan 2022 02:00:41 +0100 Subject: [PATCH 7/8] implement feedback --- .github/ISSUE_TEMPLATE/bug.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 17d229f77e4..afdcef183bb 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -32,12 +32,17 @@ body: - type: input attributes: - label: Reproducable sample + label: Reproducible sample description: | Please provide issue reproduction. - You can use [this codepen](https://codepen.io/pen?template=BapRepQ) to make a reproducable sample. + You can use [this codepen](https://codepen.io/pen?template=BapRepQ) to make a reproducible sample. - For typescript issues you can make use of [this TS Playground](https://www.typescriptlang.org/play?#code/JYWwDg9gTgLgBAbzgYQBYENZwL5wGZQQhwDkAxhrAHQBWAziQNwCwAUGwG6ZxkwAecALxwAJhDIBXEAFMAdjCoBzaTACiAG2kz5AIQCeASREAKAEQg9aTDFMBKOOjpwAEgBUAsgBlk6WVzoaWnIwLKxcUHAWVljCstIA7iiUMMa8fAA0iGxwOXAwemDSAFyk6sBxJOnZuSLoMOglCNW5ueroAEbS6nQlANqmAErSIqaZpjrqEtKjcKYAml3qEPEzpgDiUNJyqwAKElBgmqsA8lC+yqYAulWsLS219XQqPXC9Tbd3n22d6iUkAMRwCB4OAANQgMGkDBun0+DwarwAjAAmTKIgCcmQAzJkAKyZVFwLHXZp3bCXUnYGG5CBgGDACCyF7vT50MjoTTM0ktPiNbl3fk5KmCuB6PkfWFwEXYfkyiU4NjYWyMIA) to make a reproducable sample. + Major framework wrappers for chart.js template: + [vue-chart-3 (Vue)](https://codesandbox.io/s/vue-chart-3-chart-js-issue-template-bpg7k?file=/src/App.vue) + [ng2-charts sandbox (Angular)](https://codesandbox.io/s/ng2charts-chart-js-issue-template-fhezt?file=/src/app/app.component.ts) + [react-chartjs-2 sandbox (React)](https://codesandbox.io/s/react-chartjs-2-chart-js-issue-template-cg7b5?file=/src/App.tsx) + + For typescript issues you can make use of [this TS Playground](https://www.typescriptlang.org/play?#code/JYWwDg9gTgLgBAbzgYQBYENZwL5wGZQQhwDkAxhrAHQBWAziQNwCwAUGwG6ZxkwAecALxwAJhDIBXEAFMAdjCoBzaTACiAG2kz5AIQCeASREAKAEQg9aTDFMBKOOjpwAEgBUAsgBlk6WVzoaWnIwLKxcUHAWVljCstIA7iiUMMa8fAA0iGxwOXAwemDSAFyk6sBxJOnZuSLoMOglCNW5ueroAEbS6nQlANqmAErSIqaZpjrqEtKjcKYAml3qEPEzpgDiUNJyqwAKElBgmqsA8lC+yqYAulWsLS219XQqPXC9Tbd3n22d6iUkAMRwCB4OAANQgMGkDBun0+DwarwAjAAmTKIgCcmQAzJkAKyZVFwLHXZp3bCXUnYGG5CBgGDACCyF7vT50MjoTTM0ktPiNbl3fk5KmCuB6PkfWFwEXYfkyiU4NjYWyMIA) to make a reproducible sample. If filing a bug against `master`, you may reference the latest code via https://www.chartjs.org/dist/master/chart.min.js (changing the filename to From 4247f045a43c67ac3201501f8c35a74242fb50e7 Mon Sep 17 00:00:00 2001 From: Jacco van den Berg Date: Mon, 3 Jan 2022 02:19:43 +0100 Subject: [PATCH 8/8] gramar, missing word --- .github/ISSUE_TEMPLATE/bug.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index afdcef183bb..54cca5cf2ce 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -37,8 +37,8 @@ body: Please provide issue reproduction. You can use [this codepen](https://codepen.io/pen?template=BapRepQ) to make a reproducible sample. - Major framework wrappers for chart.js template: - [vue-chart-3 (Vue)](https://codesandbox.io/s/vue-chart-3-chart-js-issue-template-bpg7k?file=/src/App.vue) + Major framework wrappers for chart.js templates: + [vue-chart-3 sandbox (Vue)](https://codesandbox.io/s/vue-chart-3-chart-js-issue-template-bpg7k?file=/src/App.vue) [ng2-charts sandbox (Angular)](https://codesandbox.io/s/ng2charts-chart-js-issue-template-fhezt?file=/src/app/app.component.ts) [react-chartjs-2 sandbox (React)](https://codesandbox.io/s/react-chartjs-2-chart-js-issue-template-cg7b5?file=/src/App.tsx)