Skip to content

Commit

Permalink
fix: remove class names
Browse files Browse the repository at this point in the history
  • Loading branch information
kometenstaub committed Dec 19, 2022
1 parent 586f7c7 commit 3374e2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/diff_view.ts
Expand Up @@ -158,7 +158,7 @@ export default class SyncDiffView extends DiffView {
});
left ? (this.ids.left += 1) : (this.ids.right += 1);
const infoDiv = div.createDiv({
cls: ['u-small', 'u-muted'],
cls: ['u-muted'],
text: getSize(version.size) + ' KB [' + version.device + ']',
});
versionList.push({
Expand Down
2 changes: 1 addition & 1 deletion src/git_diff_view.ts
Expand Up @@ -93,7 +93,7 @@ export default class GitDiffView extends DiffView {
},
});
const infoDiv = div.createDiv({
cls: ['u-small', 'u-muted'],
cls: ['u-muted'],
});
const date = infoDiv.createDiv({
text: version.date.split('T')[0],
Expand Down

0 comments on commit 3374e2e

Please sign in to comment.