1
- import { ItemView , MarkdownRenderer , Notice , setIcon , WorkspaceLeaf } from 'obsidian' ;
2
- import { combineLatest , Subject } from 'rxjs' ;
3
- import { takeUntil , tap } from 'rxjs/operators' ;
4
1
import { CUSTOM_ICONS , TRELLO_ERRORS , TRELLO_VIEW_TYPE } from '../constants' ;
2
+ import { ItemView , MarkdownRenderer , Notice , WorkspaceLeaf , setIcon } from 'obsidian' ;
5
3
import {
6
4
PluginError ,
7
5
PluginUISettings ,
@@ -12,9 +10,12 @@ import {
12
10
TrelloChecklist ,
13
11
TrelloList
14
12
} from '../interfaces' ;
13
+ import { Subject , combineLatest } from 'rxjs' ;
14
+ import { takeUntil , tap } from 'rxjs/operators' ;
15
+
16
+ import { Accordion } from '../accordion/accordion' ;
15
17
import { TrelloPlugin } from '../plugin' ;
16
18
import { TrelloViewManager } from './view-manager' ;
17
- import { Accordion } from '../accordion/accordion' ;
18
19
19
20
export class TrelloView extends ItemView {
20
21
private readonly destroy = new Subject < void > ( ) ;
@@ -216,7 +217,7 @@ export class TrelloView extends ItemView {
216
217
const cardLink = cardName . createEl ( 'a' , {
217
218
attr : { href : card . url , 'aria-label' : 'View on Trello' }
218
219
} ) ;
219
- setIcon ( cardLink , 'navigate-glyph' , 24 ) ;
220
+ setIcon ( cardLink , 'navigate-glyph' ) ;
220
221
}
221
222
222
223
/**
0 commit comments