Add tooltip to add gm note button

This commit is contained in:
Carlos Fernandez 2026-07-13 05:03:43 -04:00
parent 3af0dfbe19
commit 0fd9ac52e3
2 changed files with 4 additions and 0 deletions

View file

@ -2568,6 +2568,9 @@
"severe": "Severe Threshold" "severe": "Severe Threshold"
} }
}, },
"Base": {
"addGMNote": "Add GM Note"
},
"Beastform": { "Beastform": {
"FIELDS": { "FIELDS": {
"beastformType": { "label": "Beastform Type" }, "beastformType": { "label": "Beastform Type" },

View file

@ -371,6 +371,7 @@ export default class DHBaseItemSheet extends DHApplicationMixin(ItemSheetV2) {
button.type = 'button'; button.type = 'button';
button.classList.add('icon', 'toggle', 'fa-regular', 'fa-note-medical'); button.classList.add('icon', 'toggle', 'fa-regular', 'fa-note-medical');
button.dataset.action = 'editGMNote'; button.dataset.action = 'editGMNote';
button.dataset.tooltip = 'DAGGERHEART.ITEMS.Base.addGMNote';
description.appendChild(button); description.appendChild(button);
} }