We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5cb5d1 commit b097ae9Copy full SHA for b097ae9
1 file changed
logic/classes.ts
@@ -22,11 +22,10 @@ export function buttonOptions(checkClass: any) {
22
}
23
if (checkClass.conflicts._any) {
24
icon = 'mdi-alert-circle'
25
- tooltips = [
26
- ...tooltips,
27
- ...checkClass.conflicts.time.map((c: any) => 'Conflict: ' + c.name),
28
- ]
29
- color = 'error'
+ ; (tooltips = checkClass.conflicts.time.map(
+ (c: any) => 'Conflict: ' + c.name
+ )),
+ (color = 'error')
30
disabled = true
31
32
let availability: string = checkClass.available
0 commit comments