Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ jobs:
- name: Run linting
run: npm run lint

- name: Run type check
run: npm run types

- name: Run test
run: npm run test

Expand Down
2 changes: 1 addition & 1 deletion backend/openedx_ai_extensions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
A experimental plugin for Open edX designed to explore AI extensibility.
"""

__version__ = "2.4.0"
__version__ = "2.4.1"
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openedx/openedx-ai-extensions-ui",
"version": "2.4.0",
"version": "2.4.1",
"description": "AI Extensions UI component for Open edX utilizing Frontend Plugin Framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ const PromptView = ({
isOpen={showConfirm}
onClose={() => setShowConfirm(false)}
hasCloseButton
isOverflowVisible={false}
>
<ModalDialog.Header>
<ModalDialog.Title>
Expand Down
Loading