Skip to content

Commit d8a2d17

Browse files
committed
Change mentor skillset query to Skillset:Name to fix bug with form
1 parent fb4ed22 commit d8a2d17

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pybot/endpoints/slack/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ async def slash_mentor(command: Command, app: SirBot):
4242
airtable = app.plugins["airtable"].api
4343
services = await airtable.get_all_records("Services", "Name")
4444
mentors = await airtable.get_all_records("Mentors", "Full Name")
45-
skillsets = await airtable.get_all_records("Skillsets", "Skillset")
45+
skillsets = await airtable.get_all_records("Skillsets", "Name")
4646

4747
dialog = mentor_request_attachments(services, mentors, skillsets)
4848

0 commit comments

Comments
 (0)