Skip to content

Commit

Permalink
Fix jira ticket default from issue #282 (#283)
Browse files Browse the repository at this point in the history
* Fix jira ticket default from issue #282

This selects the initial defaults for the create jira ticket modal.

* bump version to 1.4.14

* bump config.py to 1.4.14
  • Loading branch information
LanceSandino committed Jul 15, 2023
1 parent 9ddc6ac commit 6d06735
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions backend/bot/slack/modals.py
Original file line number Diff line number Diff line change
Expand Up @@ -1603,6 +1603,13 @@ def open_modal(ack, body, client):
"text": "Task",
"emoji": True,
},
"initial_option": {
"text": {
"type": "plain_text",
"text": "Task",
},
"value": "Task",
},
"options": [
{
"text": {
Expand Down Expand Up @@ -1643,6 +1650,13 @@ def open_modal(ack, body, client):
"text": "low",
"emoji": True,
},
"initial_option": {
"text": {
"type": "plain_text",
"text": "low",
},
"value": "low",
},
"options": [
{
"text": {
Expand Down
2 changes: 1 addition & 1 deletion backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from dotenv import load_dotenv
from typing import Dict, List

__version__ = "v1.4.13"
__version__ = "v1.4.14"

# .env parse
dotenv_path = os.path.join(os.path.dirname(__file__), ".env")
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.4.13
v1.4.14

0 comments on commit 6d06735

Please sign in to comment.