Skip to content

Commit 4274845

Browse files
Merge pull request #10 from mschmidtkorth/develop
Fix API key storage & flow positioning
2 parents 24b70cc + bc77edb commit 4274845

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def configuration():
5757
clearCache.setvar('isSubmitted', 'true') # No secondary screen necessary
5858
elif query.startswith(confNames['confApi'] + ' '): # Check for suffix ' ' which we add automatically so user can type immediately
5959
userInput = query.replace(confNames['confApi'] + ' ', '')
60-
apiItem = wf3.add_item(title = 'Enter API key: ' + userInput, subtitle = 'Confirm to save to keychain?', valid = False, arg = 'cu:config ' + query)
60+
apiItem = wf3.add_item(title = 'Enter API key: ' + userInput, subtitle = 'Confirm to save to keychain?', valid = True, arg = 'cu:config ' + query)
6161
apiItem.setvar('isSubmitted', 'true')
6262
elif query.startswith(confNames['confDue'] + ' '):
6363
userInput = query.replace(confNames['confDue'] + ' ', '')

info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ Uses fuzzy search instead of Alfred filtering.</string>
11601160
<key>variablesdontexport</key>
11611161
<array/>
11621162
<key>version</key>
1163-
<string>1.0.1</string>
1163+
<string>1.0.2</string>
11641164
<key>webaddress</key>
11651165
<string>https://github.com/mschmidtkorth/alfred-clickup-msk/</string>
11661166
</dict>

0 commit comments

Comments
 (0)