1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-04 13:30:04 +00:00

Merge branch 'main' of github.com:sasjs/server into issue-354

This commit is contained in:
Yury Shkoda
2023-05-02 11:17:41 +03:00
12 changed files with 99 additions and 94 deletions

View File

@@ -149,6 +149,9 @@ const LogChunk = (props: LogChunkProps) => {
style={{
display: expanded ? 'block' : 'none'
}}
onClick={(evt) => {
evt.stopPropagation()
}}
>
<div
id={`log_container`}

View File

@@ -32,7 +32,12 @@ const config: Configuration = {
]
},
{
test: /\.css$/i,
test: /\.css$/,
exclude: ['/node_modules/', /\.module\.css$/],
use: ['style-loader', 'css-loader']
},
{
test: /\.module\.css$/i,
use: [
'style-loader',
{