Skip to content

Commit 5d7edbb

Browse files
committed
Fix #135
1 parent 4614226 commit 5d7edbb

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changelog
2+
3+
## Release 0.8.1
4+
The minor `0.8.1` update brings to FQL:
5+
- Improvements to Chinese Localization ([#137](https://github.com/Forien/foundryvtt-forien-quest-log/pull/137)) by AlphaStarguide/Kuroni
6+
- [DND5e] Fix to [#135](https://github.com/Forien/foundryvtt-forien-quest-log/issues/135) – not being able to Award from an Encounter set as a Reward
7+
28
## Release 0.8.0
39
This major `0.8.0` update brings to FQL:
410
- Actors can be set as quest rewards (Item Piles / game system loot support).

external/DOMPurify.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

external/DOMPurify.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

external/collect.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

external/collect.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/view/preview/HandlerDetails.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ export class HandlerDetails
731731

732732
if (reward && (questPreview.canEdit || !reward.locked))
733733
{
734-
const appId = await Utils.showSheetFromUUID(data, { permissionCheck: false, editable: false });
734+
const appId = await Utils.showSheetFromUUID(data, { permissionCheck: false, editable: questPreview.canEdit });
735735

736736
// If a new sheet is rendered push it to the opened appIds.
737737
if (appId && !questPreview._openedAppIds.includes(appId)) { questPreview._openedAppIds.push(appId); }

0 commit comments

Comments
 (0)