Skip to content

Commit 88e9020

Browse files
rdmuellerclaude
andcommitted
feat: add feedback button linking to GitHub Issues with prefilled template
Adds a bilingual (DE/EN) feedback link in the footer that opens a new GitHub Issue with prefilled title and body template. Bumps version to 1.5.1. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 551aa53 commit 88e9020

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

src/components/RiskRadar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export default function RiskRadar() {
129129
</div>
130130

131131
<div className={styles.footer}>
132-
<div>v{VERSION} · <a href="https://github.com/LLM-Coding/vibe-coding-risk-radar" target="_blank" rel="noopener" className={styles.footerLink}>{t.footer.github}</a> · <a href={`docs/risk-radar${lang === "en" ? "-en" : ""}.html`} target="_blank" rel="noopener" className={styles.footerLink}>{t.footer.fullDocs}</a></div>
132+
<div>v{VERSION} · <a href="https://github.com/LLM-Coding/vibe-coding-risk-radar" target="_blank" rel="noopener" className={styles.footerLink}>{t.footer.github}</a> · <a href={`docs/risk-radar${lang === "en" ? "-en" : ""}.html`} target="_blank" rel="noopener" className={styles.footerLink}>{t.footer.fullDocs}</a> · <a href={`https://github.com/LLM-Coding/vibe-coding-risk-radar/issues/new?title=${encodeURIComponent(t.footer.feedbackTitle)}&body=${encodeURIComponent(t.footer.feedbackBody)}`} target="_blank" rel="noopener" className={styles.footerLink}>{t.footer.feedback}</a></div>
133133
<div>{t.footer.madeBy} <a href="https://www.linkedin.com/in/rdmueller" target="_blank" rel="noopener" className={styles.footerLink}>Ralf D. Müller</a></div>
134134
</div>
135135
</div>

src/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const VERSION = "1.5.0";
1+
export const VERSION = "1.5.1";
22

33
export const TIER_BG = ["#10b981", "#f59e0b", "#f97316", "#ef4444"];
44

src/i18n.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,9 @@ const T = {
105105
footer: {
106106
github: "GitHub",
107107
fullDocs: "Ausführliche Dokumentation",
108+
feedback: "Feedback",
109+
feedbackTitle: "Feedback: Risiko-Kategorien",
110+
feedbackBody: `## Bereich\n<!-- Welche Kategorie/Dimension/Tier betrifft Ihr Feedback? -->\n\n## Feedback\n<!-- Beschreiben Sie Ihren Vorschlag oder Ihre Beobachtung -->\n\n## Kontext (optional)\n<!-- Aus welcher Branche/Rolle kommen Sie? Hilft uns bei der Einordnung. -->`,
108111
madeBy: "Erstellt von",
109112
},
110113
docs: {
@@ -293,6 +296,9 @@ Dieses Framework bietet eine https://github.com/LLM-Coding/Semantic-Anchors?tab=
293296
footer: {
294297
github: "GitHub",
295298
fullDocs: "Full Documentation",
299+
feedback: "Feedback",
300+
feedbackTitle: "Feedback: Risk Categories",
301+
feedbackBody: `## Area\n<!-- Which category/dimension/tier does your feedback concern? -->\n\n## Feedback\n<!-- Describe your suggestion or observation -->\n\n## Context (optional)\n<!-- What industry/role are you from? Helps us prioritize. -->`,
296302
madeBy: "Created by",
297303
},
298304
docs: {

0 commit comments

Comments
 (0)