frayerjj-frontend 0.6.7 → 0.6.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/modal.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frayerjj-frontend",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
4
4
  "description": "My base frontend for various projects",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/modal.js CHANGED
@@ -187,7 +187,7 @@ export const modal = {
187
187
  let modalDialog = document.createElement('div');
188
188
  modalDialog.className = 'modal-dialog';
189
189
  if (args.className)
190
- modalDialog.classList.add(args.class);
190
+ modalDialog.classList.add(args.className);
191
191
 
192
192
  // Modal content
193
193
  let modalContent = document.createElement('div');