mirror of https://github.com/buster-so/buster.git
Merge branch 'staging' into big-nate-bus-1876-dynamic-components-still-error-out
This commit is contained in:
commit
0dfc018671
|
@ -90,14 +90,6 @@ const filters: SegmentedItem<string>[] = [
|
|||
label: 'All',
|
||||
value: JSON.stringify({}),
|
||||
},
|
||||
{
|
||||
label: 'My collections',
|
||||
value: JSON.stringify({ owned_by_me: true }),
|
||||
},
|
||||
{
|
||||
label: 'Shared with me',
|
||||
value: JSON.stringify({ shared_with_me: true }),
|
||||
},
|
||||
];
|
||||
|
||||
const CollectionFilters: React.FC<{
|
||||
|
|
|
@ -46,18 +46,6 @@ const filters: SegmentedItem<string>[] = [
|
|||
label: 'All ',
|
||||
value: JSON.stringify({}),
|
||||
},
|
||||
{
|
||||
label: 'My dashboards',
|
||||
value: JSON.stringify({
|
||||
only_my_dashboards: true,
|
||||
}),
|
||||
},
|
||||
{
|
||||
label: 'Shared with me',
|
||||
value: JSON.stringify({
|
||||
shared_with_me: true,
|
||||
}),
|
||||
},
|
||||
];
|
||||
|
||||
const DashboardFilters: React.FC<{
|
||||
|
|
|
@ -1,34 +1,16 @@
|
|||
{
|
||||
"rewrites": [
|
||||
{
|
||||
"source": "/_assets/:version/:path*",
|
||||
"destination": "/assets/:path*"
|
||||
"functions": {
|
||||
"apps/web/.output/server/index.mjs": {
|
||||
"maxDuration": 30
|
||||
}
|
||||
],
|
||||
},
|
||||
"headers": [
|
||||
{
|
||||
"source": "/_assets/(.*)",
|
||||
"headers": [
|
||||
{
|
||||
"key": "Cache-Control",
|
||||
"value": "public, max-age=31536000, immutable"
|
||||
},
|
||||
{
|
||||
"key": "Access-Control-Allow-Origin",
|
||||
"value": "*"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"source": "/assets/(.*)",
|
||||
"headers": [
|
||||
{
|
||||
"key": "Cache-Control",
|
||||
"value": "public, max-age=31536000, immutable"
|
||||
},
|
||||
{
|
||||
"key": "Access-Control-Allow-Origin",
|
||||
"value": "*"
|
||||
"value": "public, max-age=5184000, immutable"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -37,7 +19,7 @@
|
|||
"headers": [
|
||||
{
|
||||
"key": "Cache-Control",
|
||||
"value": "public, max-age=31536000, immutable"
|
||||
"value": "public, max-age=5184000, immutable"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -46,7 +28,7 @@
|
|||
"headers": [
|
||||
{
|
||||
"key": "Cache-Control",
|
||||
"value": "public, max-age=31536000, immutable"
|
||||
"value": "public, max-age=5184000, immutable"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -55,7 +37,7 @@
|
|||
"headers": [
|
||||
{
|
||||
"key": "Cache-Control",
|
||||
"value": "public, max-age=31536000, immutable"
|
||||
"value": "public, max-age=5184000, immutable"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue