mirror of
https://github.com/asyouplz/SpeechNote.git
synced 2026-07-22 06:43:33 +00:00
style: format files for code quality check
This commit is contained in:
parent
1b0c80b0ad
commit
d8cf1b5cb7
3 changed files with 9 additions and 3 deletions
|
|
@ -130,7 +130,9 @@ describe('NotificationManager', () => {
|
|||
|
||||
// DOM에서 확인 버튼 찾기
|
||||
setTimeout(() => {
|
||||
const confirmBtn = document.querySelector('.sn-modal__action--primary') as HTMLElement;
|
||||
const confirmBtn = document.querySelector(
|
||||
'.sn-modal__action--primary'
|
||||
) as HTMLElement;
|
||||
confirmBtn?.click();
|
||||
}, 10);
|
||||
|
||||
|
|
|
|||
|
|
@ -324,7 +324,9 @@ export class DragDropZone {
|
|||
private showMessage(message: string, type: 'success' | 'error') {
|
||||
if (!this.dropZone) return;
|
||||
|
||||
const messageEl = this.dropZone.createDiv(`sn-drop-zone-message sn-drop-zone-message--${type}`);
|
||||
const messageEl = this.dropZone.createDiv(
|
||||
`sn-drop-zone-message sn-drop-zone-message--${type}`
|
||||
);
|
||||
messageEl.setText(message);
|
||||
|
||||
setTimeout(() => {
|
||||
|
|
|
|||
|
|
@ -457,7 +457,9 @@ export class StatisticsDashboard {
|
|||
};
|
||||
|
||||
Object.entries(updates).forEach(([id, value]) => {
|
||||
const card = this.element?.querySelector(`[data-stat-id="${id}"] .sn-stats-card__value`);
|
||||
const card = this.element?.querySelector(
|
||||
`[data-stat-id="${id}"] .sn-stats-card__value`
|
||||
);
|
||||
if (card) {
|
||||
card.textContent = value;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue