Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable users to create tasks from Slack #5240

Merged
merged 33 commits into from
Oct 1, 2024
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
2b18566
Enable users to create tasks from Slack.
metroid-samus Sep 23, 2024
e5143b1
Adds dispatch-create-task slug to slack conversation plugin config.
metroid-samus Sep 23, 2024
416db6b
Merge branch 'master' into enhancement/create-task-from-slack
metroid-samus Sep 23, 2024
e83b4cb
Fix a condition where default was execting when it shouldn't (#5194)
kevgliss Sep 24, 2024
effff01
Adds description to database upgrade script.
metroid-samus Sep 24, 2024
a32651b
Relabel assignee field in task creation modal.
metroid-samus Sep 24, 2024
6fdd1a8
Creates error modals.
metroid-samus Sep 24, 2024
a3f37de
Fixes lint error.
metroid-samus Sep 24, 2024
2409387
feat(genai): add llm case summary and historical summary to slack plu…
wssheldon Sep 24, 2024
7acb987
ux/fix(slack): move snooze mfa to new mfa, add emoji to case message,…
wssheldon Sep 24, 2024
6680f26
Fixes access to local variable 'thread_conversation_weblink' (#5244)
metroid-samus Sep 25, 2024
8addd8c
Correcting metadata indexing (#5245)
whitdog47 Sep 25, 2024
685063a
Ensure empty details doesn't throw error (#5246)
whitdog47 Sep 26, 2024
199badd
chore(deps-dev): bump faker from 28.4.1 to 30.0.0 (#5250)
dependabot[bot] Sep 26, 2024
30f5c1c
chore(deps-dev): bump ruff from 0.6.5 to 0.6.8 (#5249)
dependabot[bot] Sep 26, 2024
b9fc4b4
chore(deps): bump @tiptap/pm in /src/dispatch/static/dispatch (#5248)
dependabot[bot] Sep 26, 2024
7ac7073
chore(deps): bump @tiptap/starter-kit in /src/dispatch/static/dispatc…
dependabot[bot] Sep 26, 2024
2631dee
chore(deps): bump rollup in /src/dispatch/static/dispatch (#5241)
dependabot[bot] Sep 26, 2024
3f0980e
chore(deps): bump pandas from 2.2.2 to 2.2.3 (#5235)
dependabot[bot] Sep 26, 2024
3135123
chore(deps): bump python-multipart from 0.0.9 to 0.0.10 (#5234)
dependabot[bot] Sep 26, 2024
03b5e12
chore(deps-dev): bump @playwright/test in /src/dispatch/static/dispat…
dependabot[bot] Sep 26, 2024
8b01ef8
chore(deps): bump slack-sdk from 3.33.0 to 3.33.1 (#5226)
dependabot[bot] Sep 26, 2024
aef9427
chore(deps): bump @formkit/vue in /src/dispatch/static/dispatch (#5223)
dependabot[bot] Sep 26, 2024
609568f
chore(deps): bump @formkit/themes in /src/dispatch/static/dispatch (#…
dependabot[bot] Sep 26, 2024
22b0344
Correcting import for datetime (#5261)
whitdog47 Sep 29, 2024
8f255d7
update(ci): version bumps (#5266)
Ant0wan Sep 30, 2024
662510d
After a task is created from the Slack UI, a confirmation message is …
metroid-samus Sep 30, 2024
0d9ebe9
Adds button for resolving/reopening a task.
metroid-samus Sep 30, 2024
1e713d1
Merge branch 'master' into enhancement/create-task-from-slack
metroid-samus Sep 30, 2024
0130ddc
Fixes task message format. Removes initial value for task description.
metroid-samus Oct 1, 2024
19e4af1
Fixes task message format. Removes initial value for task description.
metroid-samus Oct 1, 2024
c1599ea
Fixes typo
metroid-samus Oct 1, 2024
09403f8
Merge branch 'master' into enhancement/create-task-from-slack
metroid-samus Oct 1, 2024
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
Prev Previous commit
Next Next commit
Ensure empty details doesn't throw error (#5246)
whitdog47 authored and metroid-samus committed Sep 30, 2024
commit 685063ad3fbb1315ea936cd15677988fc67259e1
Original file line number Diff line number Diff line change
@@ -59,7 +59,7 @@
</v-tooltip>
</template>
<template #item.details="{ item }">
<span v-if="item.details">
<span v-if="item.details && item.details.length > 0">
Incidents: {{ item.details[0].num_incidents }}<br />
Cases: {{ item.details[0].num_cases }}<br />
Participants: {{ item.details[0].num_participants }}<br />