Skip to content

Commit

Permalink
fix: add s3 parquet file renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Jan 25, 2024
1 parent 2f8243b commit 4a6710e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 1 addition & 8 deletions frontend/src/lib/components/DisplayResult.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,10 @@
import Alert from './common/alert/Alert.svelte'
import AutoDataTable from './table/AutoDataTable.svelte'
import Markdown from 'svelte-exmarkdown'
<<<<<<< Updated upstream
import Toggle from './Toggle.svelte'
import FileDownload from './common/fileDownload/FileDownload.svelte'
=======
import { HelpersService } from '$lib/gen'
import { workspaceStore } from '$lib/stores'
import ParqetTableRenderer from './ParqetTableRenderer.svelte'
<<<<<<< Updated upstream
>>>>>>> Stashed changes
=======
>>>>>>> Stashed changes
export let result: any
export let requireHtmlApproval = false
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/lib/components/ParqetTableRenderer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@

<DarkModeObserver bind:darkMode />

<div class={twMerge('border shadow-sm divide-y flex flex-col h-full min-h-[600px]')}>
<div class={twMerge('mt-4 border shadow-sm divide-y flex flex-col h-full min-h-[600px]')}>
<div class="ag-theme-alpine h-full" class:ag-theme-alpine-dark={darkMode}>
<div bind:this={eGui} style="height:100%" />
</div>
Expand Down

0 comments on commit 4a6710e

Please sign in to comment.