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',
|
label: 'All',
|
||||||
value: JSON.stringify({}),
|
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<{
|
const CollectionFilters: React.FC<{
|
||||||
|
|
|
@ -46,18 +46,6 @@ const filters: SegmentedItem<string>[] = [
|
||||||
label: 'All ',
|
label: 'All ',
|
||||||
value: JSON.stringify({}),
|
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<{
|
const DashboardFilters: React.FC<{
|
||||||
|
|
|
@ -1,34 +1,16 @@
|
||||||
{
|
{
|
||||||
"rewrites": [
|
"functions": {
|
||||||
{
|
"apps/web/.output/server/index.mjs": {
|
||||||
"source": "/_assets/:version/:path*",
|
"maxDuration": 30
|
||||||
"destination": "/assets/:path*"
|
|
||||||
}
|
}
|
||||||
],
|
|
||||||
"headers": [
|
|
||||||
{
|
|
||||||
"source": "/_assets/(.*)",
|
|
||||||
"headers": [
|
|
||||||
{
|
|
||||||
"key": "Cache-Control",
|
|
||||||
"value": "public, max-age=31536000, immutable"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": "Access-Control-Allow-Origin",
|
|
||||||
"value": "*"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
|
"headers": [
|
||||||
{
|
{
|
||||||
"source": "/assets/(.*)",
|
"source": "/assets/(.*)",
|
||||||
"headers": [
|
"headers": [
|
||||||
{
|
{
|
||||||
"key": "Cache-Control",
|
"key": "Cache-Control",
|
||||||
"value": "public, max-age=31536000, immutable"
|
"value": "public, max-age=5184000, immutable"
|
||||||
},
|
|
||||||
{
|
|
||||||
"key": "Access-Control-Allow-Origin",
|
|
||||||
"value": "*"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -37,7 +19,7 @@
|
||||||
"headers": [
|
"headers": [
|
||||||
{
|
{
|
||||||
"key": "Cache-Control",
|
"key": "Cache-Control",
|
||||||
"value": "public, max-age=31536000, immutable"
|
"value": "public, max-age=5184000, immutable"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -46,7 +28,7 @@
|
||||||
"headers": [
|
"headers": [
|
||||||
{
|
{
|
||||||
"key": "Cache-Control",
|
"key": "Cache-Control",
|
||||||
"value": "public, max-age=31536000, immutable"
|
"value": "public, max-age=5184000, immutable"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -55,7 +37,7 @@
|
||||||
"headers": [
|
"headers": [
|
||||||
{
|
{
|
||||||
"key": "Cache-Control",
|
"key": "Cache-Control",
|
||||||
"value": "public, max-age=31536000, immutable"
|
"value": "public, max-age=5184000, immutable"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue