Skip to content

Commit ec60186

Browse files
committed
Update csp... again
1 parent cc3b111 commit ec60186

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/fluster/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"security": {
2222
"csp": {
2323
"default-src": "*",
24+
"connect-src": "ipc: http://ipc.localhost",
2425
"style-src": "'self' 'unsafe-inline'",
2526
"img-src": "*",
2627
"script-src": "'self' 'unsafe-inline' 'unsafe-eval' *",
27-
"connect-src": "'self' 'unsafe-inline' 'unsafe-eval' *",
2828
"frame-src": "*"
2929
},
3030
"assetProtocol": {

apps/fluster/src/features/tabular/presentation/tabular_datatable_page/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ export const TabularDataTablePage = connector(
7070
return (
7171
<div className="w-full h-fit min-h-screen flex flex-col justify-center items-center px-8">
7272
<div className="max-w-[1080px] w-full my-16">
73-
<div>
73+
<DynamicDataTable items={data} />
74+
<div className="mt-2 text-sm">
7475
<span>File: </span>
7576
<span className="text-muted-foreground">{relativeFilePath}</span>
7677
</div>
77-
<DynamicDataTable items={data} />
7878
</div>
7979
</div>
8080
);

0 commit comments

Comments
 (0)