We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce90090 commit da9e66eCopy full SHA for da9e66e
docs/src/index.js
@@ -52,7 +52,7 @@ function initiate_search() {
52
let values = JQ_REPO_FIELD.val().split('/').filter(Boolean);
53
let len = values.length;
54
55
- if (len < 1) {
+ if (len < 2) {
56
getElementById_$(UF_ID_MSG).html('Please enter a valid query: it should contain two strings separated by a "/"');
57
return; // abort
58
}
@@ -94,7 +94,7 @@ JQ_TOKEN_SAVE.click(event => {
94
function drawAddTokenBtn(accessToken) {
95
let verb = 'Add';
96
if (accessToken) {
97
- verb = 'Edit'
+ verb = 'Edit';
98
JQ_TOKEN_FIELD.val(accessToken);
99
100
JQ_TOKEN_BTN.html('<img src="assets/settings-icon.png" alt="settings" />'
0 commit comments