Fix lint errors
This commit is contained in:
parent
fa392cf260
commit
45147ee7c4
|
@ -46,7 +46,7 @@ module.exports = class Server {
|
||||||
return LANG;
|
return LANG;
|
||||||
})))
|
})))
|
||||||
.get('/api/ui-detailed-stats', (Util.promisify(async () => {
|
.get('/api/ui-detailed-stats', (Util.promisify(async () => {
|
||||||
return UI_DETAILED_STATS === 'true' ? true : false;
|
return UI_DETAILED_STATS === 'true';
|
||||||
})))
|
})))
|
||||||
|
|
||||||
// Authentication
|
// Authentication
|
||||||
|
|
|
@ -7,12 +7,12 @@ module.exports = {
|
||||||
content: ['./www/**/*.{html,js}'],
|
content: ['./www/**/*.{html,js}'],
|
||||||
theme: {
|
theme: {
|
||||||
screens: {
|
screens: {
|
||||||
'xs': '576px',
|
xs: '576px',
|
||||||
'sm': '640px',
|
sm: '640px',
|
||||||
'md': '768px',
|
md: '768px',
|
||||||
'lg': '1024px',
|
lg: '1024px',
|
||||||
'xl': '1280px',
|
xl: '1280px',
|
||||||
'2xl': '1536px',
|
'2xl': '1536px',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue