Skip to content

Commit

Permalink
v12.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Nov 17, 2023
1 parent e21b973 commit 306abe2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ export namespace Gleap {
function openNews(showBackButton?: boolean): void;
function openNewsArticle(id: string, showBackButton?: boolean): void;
function openConversations(showBackButton?: boolean): void;
function startProductTour(tourId: string): void;
function openConversation(
shareToken?: string,
showBackButton?: boolean
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gleap",
"version": "12.8.0",
"version": "12.8.1",
"main": "build/index.js",
"scripts": {
"start": "webpack serve",
Expand Down
1 change: 1 addition & 0 deletions published/12.8.1/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion published/latest/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/GleapShortcutListener.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default class GleapShortcutListener {
const char = charForEvent(e);
if (
e.ctrlKey &&
(char === "i" || char === "I" || char === 73)
(char === "u" || char === "U" || char === 85)
) {
Gleap.startFeedbackFlowWithOptions("bugreporting", {
autostartDrawing: true
Expand Down

0 comments on commit 306abe2

Please sign in to comment.