Merge branch 'staging' of https://dev.sismedika.online/febio/aso into staging

This commit is contained in:
2024-01-17 10:17:02 +07:00
2 changed files with 3 additions and 1 deletions

View File

@@ -317,7 +317,8 @@ function handleChangeTab(event: React.SyntheticEvent, newValue: string) {
: Object.fromEntries([...searchParams.entries(), ['order', order], ['orderBy', orderBy]]);
const response = await axios.get(`/get-request-log`, {
params: { ...parameters, type: 'request-log' },
params: { ...parameters, order: order,
orderBy: orderBy, type: 'request-log' },
});
setData(
response.data.data.map((obj: any) => ({

View File

@@ -9,6 +9,7 @@ export default defineConfig({
// This changes the out put dir from dist to build
// comment this out if that isn't relevant for your project
build: {
manifest: true,
outDir: 'build',
chunkSizeWarningLimit: 100,
rollupOptions: {