Skip to content

Commit

Permalink
fix: adding visibility file dates in the actions menu (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnvente authored Mar 11, 2024
1 parent 5a91674 commit c2fa71d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ Change Log
Unreleased
**********

0.8.1 - 2024-03-11
**********************************************

Changed
=======

* Update visibility dates in the menu of 'Actions'

0.8.0 - 2024-03-05
**********************************************

Expand Down
2 changes: 1 addition & 1 deletion filesmanager/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Init for the FilesManagerXBlock package.
"""

__version__ = '0.8.0'
__version__ = '0.8.1'
2 changes: 1 addition & 1 deletion filesmanager/static/html/bundle.js

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions react-app/components/FileManager/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ export const addDateVisibilityFiles = defineFileAction({
id: 'add_date_visibility_files',
button: {
name: 'Set file visibility with date',
toolbar: false,
toolbar: true,
contextMenu: true,
group: 'Actions',
icon: faCalendarDays
}
});
Expand All @@ -73,8 +74,9 @@ export const removeDateVisibilityFiles = defineFileAction({
id: 'remove_date_visibility_files',
button: {
name: 'Remove date visibility',
toolbar: false,
toolbar: true,
contextMenu: true,
group: 'Actions',
icon: faCalendarXmark
}
});
Expand Down

0 comments on commit c2fa71d

Please sign in to comment.