Skip to content

Commit f339ee5

Browse files
author
hikki
committed
8
1 parent 3220e2a commit f339ee5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/assets/component.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ window.ComponentDot = class {
526526
this._switchMaker = function () {
527527
let select = this.select;
528528
let menu = document.createElement('div');
529-
menu.className = 'dlp-dot-switch';
529+
menu.className = 'dlp dlp-dot-switch';
530530
this.id_line_hash = [];
531531
let line = 0;
532532
for (let id in select) {
@@ -535,7 +535,7 @@ window.ComponentDot = class {
535535
line++;
536536
let option = document.createElement('div');
537537
option.setAttribute('data-id', id);
538-
option.className = `dlp-button${this._modSettings.color}`;
538+
option.className = `dlp dlp-button${this._modSettings.color}`;
539539
option.textContent = select[id];
540540
option.addEventListener('click', () => {
541541
if (this.select_data.indexOf(id) !== -1) {

0 commit comments

Comments
 (0)