Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Muttley committed Oct 4, 2024
1 parent 0f4eff1 commit 6a642a6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
9 changes: 9 additions & 0 deletions scss/mixins/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,14 @@ $columns: 6;
}
}

@mixin grid-colstart {
@for $i from 1 through $columns {
.grid-colstart-#{$i} {
grid-column-start: #{$i};
}
}
}

@include grid-colspan;
@include grid-colstart;
@include grid-x-columns;
1 change: 1 addition & 0 deletions system/src/sheets/ItemSheetSD.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export default class ItemSheetSD extends ItemSheet {
await shadowdark.compendiums.languages(),
this.item.system.languages.fixed ?? []
);

const [selectedLanguages, availableSelectLanguages] =
await shadowdark.utils.getDedupedSelectedItems(
await shadowdark.compendiums.languages(),
Expand Down
4 changes: 2 additions & 2 deletions system/src/utils/UtilitySD.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ export default class UtilitySD {
/**
* Creates de-duplicated lists of Selected and Unselected Items.
*
* @param {allItems} Array A list of all available skills
* @param {items} Array A list of currently selected skills
* @param {allItems} Array A list of all available items
* @param {items} Array A list of currently selected items
*
* @returns {Promise} Promise which represents an array containing both the
* selected and unselected skill arrays
Expand Down

0 comments on commit 6a642a6

Please sign in to comment.