Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion extension/chrome/scripts/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ var doLogin = function(data, sendResponse) {


var authSuccess = function(data) {
var api_key_input = document.getElementsByTagName('input')[0];
var api_key_input = document.querySelector('input[name="value"]');
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please upgrade the version and update the version information in README.md file? So that 6.0.16 can use the current version and 6.0.17+ will use your changes.

You can take a reference from https://github.com/delphix/Delphix-Masking-API-Client-Extension/pull/3/files#diff-b335630551682c19a781afebcf4d07bf978fb1f8ac04c6bf87428ed5106870f5

api_key_input.value = data.Authorization;
trigger_change_event(api_key_input);
var login_button = document.getElementsByClassName('btn modal-btn auth authorize button')[0];
Expand Down